Uses of Class
org.apache.sling.auth.core.spi.AuthenticationInfo
Packages that use AuthenticationInfo
Package
Description
Provides the authentication helper service as well as a number
of utility functions in the
AuthUtil
class.Provides API to be implemented by provides of authentication
mechanisms.
-
Uses of AuthenticationInfo in org.apache.sling.auth.core
Methods in org.apache.sling.auth.core with parameters of type AuthenticationInfoModifier and TypeMethodDescriptiondefault voidJakartaLoginEventDecorator.decorateLoginEvent(@NotNull jakarta.servlet.http.HttpServletRequest request, @NotNull AuthenticationInfo authInfo, @NotNull Map<String, Object> eventProperties) Called to allow the component to modify the login event propertiesdefault voidLoginEventDecorator.decorateLoginEvent(@NotNull javax.servlet.http.HttpServletRequest request, @NotNull AuthenticationInfo authInfo, @NotNull Map<String, Object> eventProperties) Deprecated.Called to allow the component to modify the login event propertiesdefault voidJakartaLoginEventDecorator.decorateLoginFailedEvent(@NotNull jakarta.servlet.http.HttpServletRequest request, @NotNull AuthenticationInfo authInfo, @NotNull Map<String, Object> eventProperties) Called to allow the component to modify the login failed event propertiesdefault voidLoginEventDecorator.decorateLoginFailedEvent(@NotNull javax.servlet.http.HttpServletRequest request, @NotNull AuthenticationInfo authInfo, @NotNull Map<String, Object> eventProperties) Deprecated.Called to allow the component to modify the login failed event properties -
Uses of AuthenticationInfo in org.apache.sling.auth.core.spi
Fields in org.apache.sling.auth.core.spi declared as AuthenticationInfoModifier and TypeFieldDescriptionstatic final AuthenticationInfoAuthenticationInfo.DOING_AUTHA special instance of this class which may be returned from theJakartaAuthenticationHandler.extractCredentials(jakarta.servlet.http.HttpServletRequest, jakarta.servlet.http.HttpServletResponse)method to inform the caller, that a response has been sent to the client to request for credentials.static final AuthenticationInfoAuthenticationInfo.FAIL_AUTHA special instance of this class which may be returned from theJakartaAuthenticationHandler.extractCredentials(jakarta.servlet.http.HttpServletRequest, jakarta.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 AuthenticationInfoModifier and TypeMethodDescriptionAuthenticationHandler.extractCredentials(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Deprecated.JakartaAuthenticationHandler.extractCredentials(jakarta.servlet.http.HttpServletRequest request, jakarta.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 AuthenticationInfoModifier and TypeMethodDescriptionvoidAuthenticationFeedbackHandler.authenticationFailed(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) Deprecated.Called if authentication failed with the credentials provided in theauthInfomap.voidDefaultAuthenticationFeedbackHandler.authenticationFailed(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) Deprecated.This default implementation does nothing.voidDefaultJakartaAuthenticationFeedbackHandler.authenticationFailed(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) This default implementation does nothing.voidJakartaAuthenticationFeedbackHandler.authenticationFailed(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) Called if authentication failed with the credentials provided in theauthInfomap.booleanAuthenticationFeedbackHandler.authenticationSucceeded(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) Deprecated.Called if authentication succeeded with the credentials provided in theauthInfomap.booleanDefaultAuthenticationFeedbackHandler.authenticationSucceeded(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) Deprecated.This default implementation calls theDefaultAuthenticationFeedbackHandler.handleRedirect(HttpServletRequest, HttpServletResponse)method to optionally redirect the request after successful authentication.booleanDefaultJakartaAuthenticationFeedbackHandler.authenticationSucceeded(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) This default implementation calls theDefaultJakartaAuthenticationFeedbackHandler.handleRedirect(HttpServletRequest, HttpServletResponse)method to optionally redirect the request after successful authentication.booleanJakartaAuthenticationFeedbackHandler.authenticationSucceeded(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationInfo authInfo) Called if authentication succeeded with the credentials provided in theauthInfomap.voidAuthenticationInfoPostProcessor.postProcess(AuthenticationInfo info, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Deprecated.Perform some post-processing on the AuthenticationInfo object.voidJakartaAuthenticationInfoPostProcessor.postProcess(AuthenticationInfo info, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Perform some post-processing on the AuthenticationInfo object.
JakartaAuthenticationHandler