Created
September 28, 2013 13:35
-
-
Save craigew/6742150 to your computer and use it in GitHub Desktop.
Reference to address
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@OneToOne(cascade = CascadeType.ALL, optional=false) | |
@JoinColumn(name="RESIDENTIAL_ADDRESS_ID") | |
private Address residentialAddress; | |
@OneToOne(cascade = CascadeType.ALL, optional=true) | |
@JoinColumn(name="POSTAL_ADDRESS_ID") | |
private Address postalAddress; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment