Class DelegatingServerAuthenticationSuccessHandler
java.lang.Object
org.springframework.security.web.server.authentication.DelegatingServerAuthenticationSuccessHandler
- All Implemented Interfaces:
- ServerAuthenticationSuccessHandler
public class DelegatingServerAuthenticationSuccessHandler
extends Object
implements ServerAuthenticationSuccessHandler
Delegates to a collection of 
ServerAuthenticationSuccessHandler
 implementations.- Since:
- 5.1
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a new instance with the provided list of delegates
- 
Method SummaryModifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>onAuthenticationSuccess(WebFilterExchange exchange, Authentication authentication) Invoked when the application authenticates successfully
- 
Constructor Details- 
DelegatingServerAuthenticationSuccessHandlerpublic DelegatingServerAuthenticationSuccessHandler(ServerAuthenticationSuccessHandler... delegates) 
- 
DelegatingServerAuthenticationSuccessHandlerpublic DelegatingServerAuthenticationSuccessHandler(List<ServerAuthenticationSuccessHandler> delegates) Creates a new instance with the provided list of delegates- Parameters:
- delegates- the- Listof- ServerAuthenticationSuccessHandler
- Since:
- 6.3
 
 
- 
- 
Method Details- 
onAuthenticationSuccesspublic reactor.core.publisher.Mono<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)
 
 
-