Interface SecurityWebFilterChain
-
- All Known Implementing Classes:
MatcherSecurityWebFilterChain
public interface SecurityWebFilterChainDefines a filter chain which is capable of being matched against aServerWebExchangein order to decide whether it applies to that request.- Since:
- 5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Flux<org.springframework.web.server.WebFilter>getWebFilters()TheWebFilterto usereactor.core.publisher.Mono<java.lang.Boolean>matches(org.springframework.web.server.ServerWebExchange exchange)Determines if thisSecurityWebFilterChainmatches the providedServerWebExchange
-
-
-
Method Detail
-
matches
reactor.core.publisher.Mono<java.lang.Boolean> matches(org.springframework.web.server.ServerWebExchange exchange)
Determines if thisSecurityWebFilterChainmatches the providedServerWebExchange- Parameters:
exchange- theServerWebExchange- Returns:
- true if it matches, else false
-
getWebFilters
reactor.core.publisher.Flux<org.springframework.web.server.WebFilter> getWebFilters()
TheWebFilterto use- Returns:
-
-