[
https://issues.jboss.org/browse/FORGE-523?page=com.atlassian.jira.plugin....
]
Shameera Rathanayaka commented on FORGE-523:
--------------------------------------------
Hi Gastaldi,
I fixed this issue, I'll send my pull request. BTW i couldn't find the Test case
associated with this issue. Could you please point me out how get that, As i am not much
familiar with git this will help me lot.
Thanks,
Shameera.
field plugin fails to create enum attribute
-------------------------------------------
Key: FORGE-523
URL:
https://issues.jboss.org/browse/FORGE-523
Project: Forge
Issue Type: Bug
Affects Versions: 1.0.2.Final
Reporter: George Gastaldi
Assignee: George Gastaldi
Fix For: 1.0.3.Final
Having an entity named X and an enumeration named Y, running
{code}
field custom --named enumAtt --type Y.java
{code}
creates the following entry:
{code}
@Column
private java enumAtt;
.. getters and setters ...
{code}
it should read:
{code}
@Column
@Enumerated
private Y enumAtt;
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira