Class ObservationReactiveAuthorizationManager<T>
java.lang.Object
org.springframework.security.authorization.ObservationReactiveAuthorizationManager<T>
- All Implemented Interfaces:
 ReactiveAuthorizationManager<T>
public final class ObservationReactiveAuthorizationManager<T>
extends Object
implements ReactiveAuthorizationManager<T>
An 
ReactiveAuthorizationManager that observes the authentication- Since:
 - 6.0
 
- 
Constructor Summary
ConstructorsConstructorDescriptionObservationReactiveAuthorizationManager(io.micrometer.observation.ObservationRegistry registry, ReactiveAuthorizationManager<T> delegate)  - 
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<AuthorizationDecision>check(reactor.core.publisher.Mono<Authentication> authentication, T object) Determines if access is granted for a specific authentication and object.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.security.authorization.ReactiveAuthorizationManager
verify 
- 
Constructor Details
- 
ObservationReactiveAuthorizationManager
public ObservationReactiveAuthorizationManager(io.micrometer.observation.ObservationRegistry registry, ReactiveAuthorizationManager<T> delegate)  
 - 
 - 
Method Details
- 
check
public reactor.core.publisher.Mono<AuthorizationDecision> check(reactor.core.publisher.Mono<Authentication> authentication, T object) Description copied from interface:ReactiveAuthorizationManagerDetermines if access is granted for a specific authentication and object.- Specified by:
 checkin interfaceReactiveAuthorizationManager<T>- Parameters:
 authentication- the Authentication to checkobject- the object to check- Returns:
 - an decision or empty Mono if no decision could be made.
 
 
 -