Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package com.server.msg.impl;
  2.  
  3. import com.server.msg.Message;
  4.  
  5. public class LoginHandler extends Message {
  6.  
  7. String username;
  8. String password;
  9.  
  10. public LoginHandler(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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement