Interface ServerAuthenticationSuccessHandler
- All Known Implementing Classes:
- ConcurrentSessionControlServerAuthenticationSuccessHandler,- DelegatingServerAuthenticationSuccessHandler,- RedirectServerAuthenticationSuccessHandler,- RegisterSessionServerAuthenticationSuccessHandler,- WebFilterChainServerAuthenticationSuccessHandler
public interface ServerAuthenticationSuccessHandler
Handles authentication success
- Since:
- 5.0
- 
Method SummaryModifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>onAuthenticationSuccess(WebFilterExchange webFilterExchange, Authentication authentication) Invoked when the application authenticates successfully
- 
Method Details- 
onAuthenticationSuccessreactor.core.publisher.Mono<Void> onAuthenticationSuccess(WebFilterExchange webFilterExchange, Authentication authentication) Invoked when the application authenticates successfully- Parameters:
- webFilterExchange- the exchange
- authentication- the- Authentication
- Returns:
- a completion notification (success or error)
 
 
-