Class DelegatingAuthenticationFailureHandler
java.lang.Object
org.springframework.security.web.authentication.DelegatingAuthenticationFailureHandler
- All Implemented Interfaces:
 AuthenticationFailureHandler
public class DelegatingAuthenticationFailureHandler
extends Object
implements AuthenticationFailureHandler
An 
AuthenticationFailureHandler that delegates to other
 AuthenticationFailureHandler instances based upon the type of
 AuthenticationException passed into
 onAuthenticationFailure(HttpServletRequest, HttpServletResponse, AuthenticationException)
 .- Since:
 - 4.0
 
- 
Constructor Summary
ConstructorsConstructorDescriptionDelegatingAuthenticationFailureHandler(LinkedHashMap<Class<? extends AuthenticationException>, AuthenticationFailureHandler> handlers, AuthenticationFailureHandler defaultHandler) Creates a new instance - 
Method Summary
Modifier and TypeMethodDescriptionvoidonAuthenticationFailure(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationException exception) Called when an authentication attempt fails. 
- 
Constructor Details
- 
DelegatingAuthenticationFailureHandler
public DelegatingAuthenticationFailureHandler(LinkedHashMap<Class<? extends AuthenticationException>, AuthenticationFailureHandler> handlers, AuthenticationFailureHandler defaultHandler) Creates a new instance- Parameters:
 handlers- a map of theAuthenticationExceptionclass to theAuthenticationFailureHandlerthat should be used. Each is considered in the order they are specified and only the firstAuthenticationFailureHandleris ued. This parameter cannot specify null or empty.defaultHandler- the defaultAuthenticationFailureHandlerthat should be used if none of the handlers matches. This parameter cannot specify null.- Throws:
 IllegalArgumentException- if invalid argument is specified
 
 - 
 - 
Method Details
- 
onAuthenticationFailure
public void onAuthenticationFailure(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationException exception) throws IOException, jakarta.servlet.ServletException Description copied from interface:AuthenticationFailureHandlerCalled when an authentication attempt fails.- Specified by:
 onAuthenticationFailurein interfaceAuthenticationFailureHandler- Parameters:
 request- the request during which the authentication attempt occurred.response- the response.exception- the exception which was thrown to reject the authentication request.- Throws:
 IOExceptionjakarta.servlet.ServletException
 
 -