Advertisement
Guest User

Untitled

a guest
Mar 29th, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. @NotEmpty(message="Please fill the username field!")
  2. public String getUsername() {
  3. return this.username;
  4. }
  5.  
  6. public void setUsername(String username) {
  7. this.username = username;
  8. }
  9.  
  10. @NotEmpty(message="Please fill the password field!")
  11. public String getPassword() {
  12. return this.password;
  13. }
  14.  
  15. public void setPassword(String password) {
  16. this.password = password;
  17. }
  18.  
  19. public String getSeqQue() {
  20. return this.seqQue;
  21. }
  22.  
  23. public void setSeqQue(String seqQue) {
  24. this.seqQue = seqQue;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement