Antonio Goncalves created FORGE-1886:
----------------------------------------
Summary: Scaffolding generates java.lang.Long for Ids
Key: FORGE-1886
URL:
https://issues.jboss.org/browse/FORGE-1886
Project: Forge
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: Scaffold
Affects Versions: 2.6.0.Final
Reporter: Antonio Goncalves
Fix For: 2.x Future
When I generate an Entity and then Scaffold the JSF web app, my Backing Beans have the
following :
{code}
private java.lang.Long id;
public java.lang.Long get Id() {
return this.id;
}
{code}
But in the previous release of Forge it used to be like that :
{code}
private Long id;
public Long get Id() {
return this.id;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)