public Authenticator getAuthenticator() {
auth = (Authenticator) getCtx().getServletContext().getAttribute("login");
if (auth == null) {
//auth = new OpenIDAuth();
auth = new NoPasswordNeededAuth();
getCtx().getServletContext().setAttribute("login", auth);
}
return auth;
}