[forge-issues] [JBoss JIRA] (FORGE-398) PersistencePlugin does not generate Cascade

Richard Kennard (JIRA) jira-events at lists.jboss.org
Wed Jan 25 20:53:48 EST 2012


     [ https://issues.jboss.org/browse/FORGE-398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Kennard reopened FORGE-398:
-----------------------------------



This can no longer be addressed in the scaffold if we are to implement FORGE-456 (well, it probably *could*, but it'd be messy).

Could you please add CascadeType.ALL to @OneToMany relationships that are bidirectional (e.g. have 'mappedBy')
                
> PersistencePlugin does not generate Cascade
> -------------------------------------------
>
>                 Key: FORGE-398
>                 URL: https://issues.jboss.org/browse/FORGE-398
>             Project: Forge
>          Issue Type: Feature Request
>            Reporter: Richard Kennard
>            Assignee: Lincoln Baxter III
>             Fix For: 1.0.0.Beta4
>
>
> This is one of those 'we could do it a different way, but it would make the generated code cleaner if...' requests :)
> At present the PersistencePlugin generates:
> 	@OneToOne
> 	private Profile profile;
> 	public Profile getProfile() {
> 		return this.profile;
> 	}
> 	public void setProfile(final Profile profile) {
> 		this.profile = profile;
> 	}
> I would instead like it to generate:
> 	@OneToOne(cascade = CascadeType.ALL)
> 	private Profile profile;
> 	public Profile getProfile() {
> 		return this.profile;
> 	}
> 	public void setProfile(final Profile profile) {
> 		this.profile = profile;
> 	}

--
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

        


More information about the forge-issues mailing list