Guest User

Untitled

a guest
Feb 13th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package security;
  2.  
  3. public class Credentials {
  4. private final String username;
  5. private final String password;
  6. private final String type;
  7.  
  8. public Credentials(String u, String p, String t) {
  9. this.username = u;
  10. this.password = p;
  11. this.type = t;
  12. }
  13. }
  14.  
  15. // you add the rest.
  16.  
  17. public class Credentials {
  18.  
  19. private String userName;
  20. private String password;
  21. private String loginType;
  22. }
Add Comment
Please, Sign In to add comment