[
https://issues.jboss.org/browse/FORGE-501?page=com.atlassian.jira.plugin....
]
Lincoln Baxter III updated FORGE-501:
-------------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 1.0.1.Final
Resolution: Done
Awesome, thomas! Max / Burr, could you please try this out!?
Faces scaffold creates compilation errors when "id" getter
is not called "getId()"
----------------------------------------------------------------------------------
Key: FORGE-501
URL:
https://issues.jboss.org/browse/FORGE-501
Project: Forge
Issue Type: Bug
Reporter: Burr Sutter
Assignee: Thomas Frühbeck
Fix For: 1.0.1.Final
Attachments: Actor.java, ActorBean.java
scaffold from-entity ~.model.* --scaffoldType faces --overwrite
generates an ActorBean.java containing
return "view?faces-redirect=true&id=" + this.actor.getId();
when the Actor.java model has the following
@Id
@Column(name = "ACTOR_ID", unique = true, nullable = false)
public short getActorId() {
return this.actorId;
}
public void setActorId(short actorId) {
this.actorId = actorId;
}
--
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