Class AuthenticationEntryPointFailureHandler
java.lang.Object
org.springframework.security.web.authentication.AuthenticationEntryPointFailureHandler
- All Implemented Interfaces:
AuthenticationFailureHandler
public class AuthenticationEntryPointFailureHandler
extends Object
implements AuthenticationFailureHandler
Adapts a
AuthenticationEntryPoint
into a AuthenticationFailureHandler
- Since:
- 5.2.0
-
Constructor Summary
ConstructorDescriptionAuthenticationEntryPointFailureHandler
(AuthenticationEntryPoint authenticationEntryPoint) -
Method Summary
Modifier and TypeMethodDescriptionvoid
onAuthenticationFailure
(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, AuthenticationException exception) Called when an authentication attempt fails.void
setRethrowAuthenticationServiceException
(boolean rethrowAuthenticationServiceException) Set whether to rethrowAuthenticationServiceException
s (defaults to true)
-
Constructor Details
-
AuthenticationEntryPointFailureHandler
-
-
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:AuthenticationFailureHandler
Called when an authentication attempt fails.- Specified by:
onAuthenticationFailure
in 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:
IOException
jakarta.servlet.ServletException
-
setRethrowAuthenticationServiceException
public void setRethrowAuthenticationServiceException(boolean rethrowAuthenticationServiceException) Set whether to rethrowAuthenticationServiceException
s (defaults to true)- Parameters:
rethrowAuthenticationServiceException
- whether to rethrowAuthenticationServiceException
s- Since:
- 5.8
-