Class DelegatingServerAuthenticationConverter
java.lang.Object
org.springframework.security.web.server.authentication.DelegatingServerAuthenticationConverter
- All Implemented Interfaces:
- ServerAuthenticationConverter
public final class DelegatingServerAuthenticationConverter
extends Object
implements ServerAuthenticationConverter
A 
ServerAuthenticationConverter that delegates to other
 ServerAuthenticationConverter instances.- Since:
- 6.3
- 
Constructor SummaryConstructorsConstructorDescription
- 
Method SummaryModifier and TypeMethodDescriptionreactor.core.publisher.Mono<Authentication>convert(org.springframework.web.server.ServerWebExchange exchange) Converts aServerWebExchangeto anAuthenticationvoidsetContinueOnError(boolean continueOnError) Continue iterating when a delegate errors, defaults tofalse
- 
Constructor Details- 
DelegatingServerAuthenticationConverter
- 
DelegatingServerAuthenticationConverter
 
- 
- 
Method Details- 
convertpublic reactor.core.publisher.Mono<Authentication> convert(org.springframework.web.server.ServerWebExchange exchange) Description copied from interface:ServerAuthenticationConverterConverts aServerWebExchangeto anAuthentication- Specified by:
- convertin interface- ServerAuthenticationConverter
- Parameters:
- exchange- The- ServerWebExchange
- Returns:
- A Monorepresenting anAuthentication
 
- 
setContinueOnErrorpublic void setContinueOnError(boolean continueOnError) Continue iterating when a delegate errors, defaults tofalse- Parameters:
- continueOnError- whether to continue when a delegate errors
- Since:
- 6.3
 
 
-