Skip to content

Instantly share code, notes, and snippets.

@Adrianvdh
Last active January 3, 2018 05:11
Show Gist options
  • Save Adrianvdh/0c7d10fd9a2dc3149a73967fb0e24e48 to your computer and use it in GitHub Desktop.
Save Adrianvdh/0c7d10fd9a2dc3149a73967fb0e24e48 to your computer and use it in GitHub Desktop.
public class UserService {
public User authenicate(String username, String password) {
User user = new User();
user.username = "adrianvdh";
user.password = "hello123";
return user;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment