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