public Account getAccount(String username) {
return (Account) queryForObject("getAccountByUsername", username);
}
public Account getAccount(String username, String password) {
Account account = new Account();
account.setUsername(username);
account.setPassword(password);
return (Account) queryForObject("getAccountByUsernameAndPassword", account);
}