Advertisement
Imran_dream71

Untitled

Oct 19th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. public class RestLogin implements Serializable {
  2.  
  3. private String username;
  4. private String password;
  5.  
  6. public RestLogin() {
  7. }
  8.  
  9. public RestLogin(String username, String password) {
  10. this.username = username;
  11. this.password = password;
  12. }
  13.  
  14. public String getUsername() {
  15. return username;
  16. }
  17.  
  18. public void setUsername(String username) {
  19. this.username = username;
  20. }
  21.  
  22. public String getPassword() {
  23. return password;
  24. }
  25.  
  26. public void setPassword(String password) {
  27. this.password = password;
  28. }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement