Uses of Class
org.apache.sling.auth.core.spi.AuthenticationInfo
-
Packages that use AuthenticationInfo Package Description org.apache.sling.auth.core.spi Provides API to be implemented by provides of authentication mechanisms. -
-
Uses of AuthenticationInfo in org.apache.sling.auth.core.spi
Fields in org.apache.sling.auth.core.spi declared as AuthenticationInfo Modifier and Type Field Description static AuthenticationInfoAuthenticationInfo. DOING_AUTHA special instance of this class which may be returned from theAuthenticationHandler.extractCredentials(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)method to inform the caller, that a response has been sent to the client to request for credentials.static AuthenticationInfoAuthenticationInfo. FAIL_AUTHA special instance of this class which may be returned from theAuthenticationHandler.extractCredentials(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)method to inform the caller that credential extraction failed for some reason.Methods in org.apache.sling.auth.core.spi that return AuthenticationInfo Modifier and Type Method Description AuthenticationInfoAuthenticationHandler. extractCredentials(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Extracts credential data from the request if at all contained.Methods in org.apache.sling.auth.core.spi with parameters of type AuthenticationInfo Modifier and Type Method Description voidAuthenticationFeedbackHandler. authenticationFailed(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo)Called if authentication failed with the credentials provided in theauthInfomap.voidDefaultAuthenticationFeedbackHandler. authenticationFailed(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo)This default implementation does nothing.booleanAuthenticationFeedbackHandler. authenticationSucceeded(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo)Called if authentication succeeded with the credentials provided in theauthInfomap.booleanDefaultAuthenticationFeedbackHandler. authenticationSucceeded(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo)This default implementation calls theDefaultAuthenticationFeedbackHandler.handleRedirect(HttpServletRequest, HttpServletResponse)method to optionally redirect the request after successful authentication.voidAuthenticationInfoPostProcessor. postProcess(AuthenticationInfo info, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Perform some post-processing on the AuthenticationInfo object.
-