Guest User

Untitled

a guest
Dec 6th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class UserService {
  2. public User authenicate(String username, String password) {
  3. User user = new User();
  4. user.username = "adrianvdh";
  5. user.password = "hello123";
  6. return user;
  7. }
  8. }
Add Comment
Please, Sign In to add comment