Guest User

Untitled

a guest
Oct 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Plane {
  2. "name" : "..."
  3. "max_alt" : "..."
  4. }
  5.  
  6. Submarine {
  7. "name" : "..."
  8. "depth_max" : "..."
  9. }
  10.  
  11. Vehicle Value Attribute
  12. ------- 1:n ----------------- n:1 ----------
  13. ID (PK) OBJECT_FK (PK) ID (PK)
  14. ATTRIBUTE_FK (PK) NAME
  15. ATTRIBUTE_VALUE
  16.  
  17. @Entity
  18. public class Vehicle{
  19. //obvious code ommited
  20.  
  21. **Map<Attribute, Set<AttributeValue>> attributeValueMap;**
  22. }
Add Comment
Please, Sign In to add comment