Class MultiAuthenticator
- All Implemented Interfaces:
 Authenticator
An Authenticator which maps different Authenticators to PathSpecs.
This can be used to support multiple different authentication methods for a single application such as FORM, OPENID and SIWE.
The setLoginPath(String) can be used to set a login page where unauthenticated users are
redirected in the case that no Authenticators were matched. This can be used as a page to
link to other paths where Authenticators are mapped to so that users can choose their login method.
- 
Nested Class Summary
Nested classes/interfaces inherited from class LoginAuthenticator
LoginAuthenticator.LoggedOutAuthentication, LoginAuthenticator.UserAuthenticationSent, LoginAuthenticator.UserAuthenticationSucceededNested classes/interfaces inherited from interface Authenticator
Authenticator.Configuration, Authenticator.Factory, Authenticator.NoOp - 
Field Summary
FieldsFields inherited from class LoginAuthenticator
_identityService, _loginServiceFields inherited from interface Authenticator
BASIC_AUTH, CERT_AUTH, CERT_AUTH2, DIGEST_AUTH, FORM_AUTH, MULTI_AUTH, NEGOTIATE_AUTH, OPENID_AUTH, SIWE_AUTH, SPNEGO_AUTH - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidaddAuthenticator(String pathSpec, Authenticator authenticator) Adds an authenticator which maps to the given pathSpec.getConstraintAuthentication(String pathInContext, Constraint.Authorization existing, Function<Boolean, Session> getSession) Get anConstraint.Authorizationapplicable to the path for this authenticator.booleanisLoginPage(String uri) If the UserIdentity returned fromLoginService.login(String, Object, Request, Function)is not null, it is assumed that the user is fully authenticated and we need to change the session id to prevent session fixation vulnerability.voidprepareRequest(Request request, AuthenticationState authenticationState) Called afterAuthenticator.validateRequest(Request, Response, Callback)and before callingRequest.Handler.handle(Request, Response, Callback)of the nested handler.voidsetConfiguration(Authenticator.Configuration configuration) Configure the AuthenticatorvoidsetDispatch(boolean dispatch) voidsetLoginPath(String loginPath) If a user is unauthenticated, a request which does not map to any of theAuthenticators will redirect to this path.validateRequest(Request request, Response response, Callback callback) Attempts to validate the authentication state of the given request.Methods inherited from class LoginAuthenticator
getAuthorizationHeader, getChallengeHeader, getLoginService, getUnauthorizedStatusCode, isProxyMode, setLoginService, setProxyMode, updateSession 
- 
Field Details
- 
LOGIN_PATH_PARAM
- See Also:
 
 - 
AUTH_TYPE_ATTR
 
 - 
 - 
Constructor Details
- 
MultiAuthenticator
public MultiAuthenticator() 
 - 
 - 
Method Details
- 
addAuthenticator
Adds an authenticator which maps to the given pathSpec.- Parameters:
 pathSpec- the pathSpec.authenticator- the authenticator.
 - 
setConfiguration
Description copied from interface:AuthenticatorConfigure the Authenticator- Specified by:
 setConfigurationin interfaceAuthenticator- Overrides:
 setConfigurationin classLoginAuthenticator- Parameters:
 configuration- the configuration
 - 
setLoginPath
If a user is unauthenticated, a request which does not map to any of theAuthenticators will redirect to this path.- Parameters:
 loginPath- the loginPath.
 - 
isLoginPage
 - 
setDispatch
public void setDispatch(boolean dispatch)  - 
getAuthenticationType
- Returns:
 - The name of the authentication type
 
 - 
login
Description copied from class:LoginAuthenticatorIf the UserIdentity returned fromLoginService.login(String, Object, Request, Function)is not null, it is assumed that the user is fully authenticated and we need to change the session id to prevent session fixation vulnerability. If the UserIdentity is not necessarily fully authenticated, then subclasses must override this method and determine when the UserIdentity IS fully authenticated and renew the session id.- Overrides:
 loginin classLoginAuthenticator- Parameters:
 username- the username of the client to be authenticatedpassword- the user's credentialrequest- the inbound request that needs authentication
 - 
logout
- Overrides:
 logoutin classLoginAuthenticator
 - 
getConstraintAuthentication
public Constraint.Authorization getConstraintAuthentication(String pathInContext, Constraint.Authorization existing, Function<Boolean, Session> getSession) Description copied from interface:AuthenticatorGet anConstraint.Authorizationapplicable to the path for this authenticator. This is typically used to vary protection on special URIs known to a specificAuthenticator(e.g. /j_security_check for theFormAuthenticator.- Parameters:
 pathInContext- The pathInContext to potentially constrain.existing- The existing authentication constraint for the pathInContext determined independently ofAuthenticatorgetSession- Function to get or create aSession.- Returns:
 - The 
Constraint.Authorizationto apply. 
 - 
validateRequest
public AuthenticationState validateRequest(Request request, Response response, Callback callback) throws ServerAuthException Description copied from interface:AuthenticatorAttempts to validate the authentication state of the given request.If authentication is successful, an
AuthenticationState.Succeededis returned. If the authenticator has already committed a response (for either success or failure), the returned value will implementAuthenticationState.ResponseSent, and the providedCallbackwill be eventually be completed, otherwise the caller is responsible for completing theCallback.A
nullreturn value indicates that no authentication state could be established, possibly because the response has already been committed.- Parameters:
 request- the request to validate.response- the response associated with the request.callback- the callback to use for writing a response.- Returns:
 - an 
AuthenticationState, ornullif authentication could not be resolved. - Throws:
 ServerAuthException- if unable to validate request.
 - 
prepareRequest
Description copied from interface:AuthenticatorCalled afterAuthenticator.validateRequest(Request, Response, Callback)and before callingRequest.Handler.handle(Request, Response, Callback)of the nested handler. This may be used by anAuthenticatorto restore method or content from a previous request that was challenged.- Parameters:
 request- the request to prepare for handlingauthenticationState- The authentication for the request
 
 -