Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @Entity public class User{
  2. @Id @Column(name = "id")
  3. @GeneratedValue
  4. private Long id;
  5.  
  6. @OneToMany (mappedBy = "document")
  7. public Set<Addresses> userAddresses;
  8.  
  9. @Version @Column(name="OPTLOCK")
  10. public Integer getVersion() { ... }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement