*/
public User createEagerUser(String username, String password, String email) throws UserServiceException {
try {
this.userMapper.createUser(username, password, email);
} catch (Exception e) {
throw new UserServiceException(UserServiceException.CREATE_EAGER_USER, new Object[] {username, password, email});
}
return getUserByUsername(username);
}