]
Antonio Goncalves commented on FORGE-1398:
------------------------------------------
That's a very good idea
Being able to create embeddables
--------------------------------
Key: FORGE-1398
URL:
https://issues.jboss.org/browse/FORGE-1398
Project: Forge
Issue Type: Sub-task
Security Level: Public(Everyone can see)
Components: UI - Shell
Affects Versions: 2.0.0.CR2
Reporter: Antonio Goncalves
Assignee: Matej Briskar
Fix For: 2.x Future
As per [FORGE-797] it would be good to have a new command to create an embeddable :
{code}
jpa-new-embeddable --named Address ;
jpa-new-field --named street1 --length 50 ;
jpa-new-field --named street2 ;
jpa-new-field --named city --length 50 ;
jpa-new-field --named state ;
{code}
Then, how do we embed it into a entity ? We could have a new {{--relationshipType}} :
{code}
jpa-new-entity --named Customer ;
jpa-new-field --named address --entity org.agoncal.application.petstore.model.Address
--relationshipType Embedded ;
{code}
Except {{Address}} is not an entity. So having {{--entity}} pointing to an embeddable
looks strange