Skip to content

Instantly share code, notes, and snippets.

@Adrianvdh
Last active December 20, 2017 04:06
Show Gist options
  • Save Adrianvdh/cfd48647295b4741bc701637bf60aa40 to your computer and use it in GitHub Desktop.
Save Adrianvdh/cfd48647295b4741bc701637bf60aa40 to your computer and use it in GitHub Desktop.
public class UserService {
private UserRepository userRepository;
public UserService(UserRepository userRepository) {
this.userRepository = userRepository;
}
public User authenticate(String username, String password) {
User foundUser = null;
return foundUser;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment