Guest User

Untitled

a guest
Jan 16th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @PersistenceCapable(detachable = "true")
  2. public class Item {
  3. ...
  4. @Persistent(defaultFetchGroup = "true")
  5. Collection<Subitem> subitems;
  6. ...
  7. }
  8.  
  9. @PersistenceCapable(detachable = "true")
  10. public class Item {
  11. ...
  12. @Persistent(defaultFetchGroup = "true")
  13. @Element(column="itemId")
  14. Collection<Subitem> subitems;
  15. ...
  16. }
Add Comment
Please, Sign In to add comment