Class DelegatingServerAuthenticationSuccessHandler
- java.lang.Object
- 
- org.springframework.security.web.server.authentication.DelegatingServerAuthenticationSuccessHandler
 
- 
- All Implemented Interfaces:
- ServerAuthenticationSuccessHandler
 
 public class DelegatingServerAuthenticationSuccessHandler extends java.lang.Object implements ServerAuthenticationSuccessHandler Delegates to a collection ofServerAuthenticationSuccessHandlerimplementations.- Since:
- 5.1
 
- 
- 
Constructor SummaryConstructors Constructor Description DelegatingServerAuthenticationSuccessHandler(ServerAuthenticationSuccessHandler... delegates)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<java.lang.Void>onAuthenticationSuccess(WebFilterExchange exchange, Authentication authentication)Invoked when the application authenticates successfully
 
- 
- 
- 
Constructor Detail- 
DelegatingServerAuthenticationSuccessHandlerpublic DelegatingServerAuthenticationSuccessHandler(ServerAuthenticationSuccessHandler... delegates) 
 
- 
 - 
Method Detail- 
onAuthenticationSuccesspublic reactor.core.publisher.Mono<java.lang.Void> onAuthenticationSuccess(WebFilterExchange exchange, Authentication authentication) Description copied from interface:ServerAuthenticationSuccessHandlerInvoked when the application authenticates successfully- Specified by:
- onAuthenticationSuccessin interface- ServerAuthenticationSuccessHandler
- Parameters:
- exchange- the exchange
- authentication- the- Authentication
- Returns:
- a completion notification (success or error)
 
 
- 
 
-