Skip to content

Instantly share code, notes, and snippets.

@samfcmc
Created August 4, 2018 13:59
Show Gist options
  • Save samfcmc/1973f0a2b5b15206c3109b9d5a4382f7 to your computer and use it in GitHub Desktop.
Save samfcmc/1973f0a2b5b15206c3109b9d5a4382f7 to your computer and use it in GitHub Desktop.
public class LoginHandler {
public boolean login(String username, String password) {
String passwordFromDB = getPasswordFromDB(username);
return password.equals(passwordFromDB);
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment