Advertisement
Guest User

Untitled

a guest
May 6th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @Entity
  2. public class Meeting extends ManagedEntity implements IManagedEntity
  3. {
  4.  
  5. @Identifier(generator = IdentifierGenerator.SEQUENCE)
  6. @Attribute
  7. protected long meetingId;
  8.  
  9. @Attribute
  10. protected Date startTime;
  11.  
  12. @Attribute
  13. protected Date endTime;
  14.  
  15. @Attribute
  16. protected String description;
  17.  
  18. @Attribute
  19. protected String location;
  20.  
  21. @Attribute
  22. protected String notes;
  23.  
  24. // Getters and Setters
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement