public class DefaultUserService implements UserService {
public String[] authenticate(String username, String password, HttpServletRequest request, HttpServletResponse response) {
// Default always fails authentication
throw new SherpaInvalidUsernamePassword("Authentication Error Invalid Credentials");
}