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