Advertisement
Guest User

Untitled

a guest
Aug 17th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class User {
  2. Long id;
  3. String username;
  4. String password;
  5. boolean active;
  6.  
  7. String getUsername() {
  8. }
  9.  
  10. boolean isNew() {
  11. return id != null;
  12. }
  13.  
  14. boolean isActive() {
  15. return active;
  16. }
  17. }
  18.  
  19. {
  20. username: "foo",
  21. active: true, // or would it be isActive, can't remember
  22. }
  23.  
  24. {
  25. username: "bar",
  26. active: false, // or would it be isActive, can't remember
  27. password: "password1"
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement