Class ServerAuthenticationEntryPointFailureHandler
java.lang.Object
org.springframework.security.web.server.authentication.ServerAuthenticationEntryPointFailureHandler
- All Implemented Interfaces:
 ServerAuthenticationFailureHandler
public class ServerAuthenticationEntryPointFailureHandler
extends Object
implements ServerAuthenticationFailureHandler
Adapts a 
ServerAuthenticationEntryPoint into a
 ServerAuthenticationFailureHandler- Since:
 - 5.0
 
- 
Constructor Summary
ConstructorsConstructorDescriptionServerAuthenticationEntryPointFailureHandler(ServerAuthenticationEntryPoint authenticationEntryPoint)  - 
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>onAuthenticationFailure(WebFilterExchange webFilterExchange, AuthenticationException exception) Invoked when authentication attempt failsvoidsetRethrowAuthenticationServiceException(boolean rethrowAuthenticationServiceException) Set whether to rethrowAuthenticationServiceExceptions (defaults to true) 
- 
Constructor Details
- 
ServerAuthenticationEntryPointFailureHandler
public ServerAuthenticationEntryPointFailureHandler(ServerAuthenticationEntryPoint authenticationEntryPoint)  
 - 
 - 
Method Details
- 
onAuthenticationFailure
public reactor.core.publisher.Mono<Void> onAuthenticationFailure(WebFilterExchange webFilterExchange, AuthenticationException exception) Description copied from interface:ServerAuthenticationFailureHandlerInvoked when authentication attempt fails- Specified by:
 onAuthenticationFailurein interfaceServerAuthenticationFailureHandler- Parameters:
 webFilterExchange- the exchangeexception- the reason authentication failed- Returns:
 - a completion notification (success or error)
 
 - 
setRethrowAuthenticationServiceException
public void setRethrowAuthenticationServiceException(boolean rethrowAuthenticationServiceException) Set whether to rethrowAuthenticationServiceExceptions (defaults to true)- Parameters:
 rethrowAuthenticationServiceException- whether to rethrowAuthenticationServiceExceptions- Since:
 - 5.8
 
 
 -