Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package Domain;
  2.  
  3. /**
  4. * Created by Sebas on 25-04-2017.
  5. */
  6. public class Account {
  7. private String userName;
  8. private String password;
  9.  
  10. public Account(String userName, String password) {
  11. this.userName = userName;
  12. this.password = password;
  13. }
  14.  
  15. public String getUserName() {
  16. return userName;
  17. }
  18.  
  19. public String getPassword() {
  20. return password;
  21. }
  22.  
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement