Class PostAuthorizeReactiveAuthorizationManager
- java.lang.Object
-
- org.springframework.security.authorization.method.PostAuthorizeReactiveAuthorizationManager
-
- All Implemented Interfaces:
ReactiveAuthorizationManager<MethodInvocationResult>
public final class PostAuthorizeReactiveAuthorizationManager extends java.lang.Object implements ReactiveAuthorizationManager<MethodInvocationResult>
AReactiveAuthorizationManagerwhich can determine if anAuthenticationhas access to the returned object from theMethodInvocationby evaluating an expression from thePostAuthorizeannotation.- Since:
- 5.8
-
-
Constructor Summary
Constructors Constructor Description PostAuthorizeReactiveAuthorizationManager()PostAuthorizeReactiveAuthorizationManager(MethodSecurityExpressionHandler expressionHandler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<AuthorizationDecision>check(reactor.core.publisher.Mono<Authentication> authentication, MethodInvocationResult result)Determines if anAuthenticationhas access to the returned object from theMethodInvocationby evaluating an expression from thePostAuthorizeannotation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.springframework.security.authorization.ReactiveAuthorizationManager
verify
-
-
-
-
Constructor Detail
-
PostAuthorizeReactiveAuthorizationManager
public PostAuthorizeReactiveAuthorizationManager()
-
PostAuthorizeReactiveAuthorizationManager
public PostAuthorizeReactiveAuthorizationManager(MethodSecurityExpressionHandler expressionHandler)
-
-
Method Detail
-
check
public reactor.core.publisher.Mono<AuthorizationDecision> check(reactor.core.publisher.Mono<Authentication> authentication, MethodInvocationResult result)
Determines if anAuthenticationhas access to the returned object from theMethodInvocationby evaluating an expression from thePostAuthorizeannotation.- Specified by:
checkin interfaceReactiveAuthorizationManager<MethodInvocationResult>- Parameters:
authentication- theMonoof theAuthenticationto checkresult- theMethodInvocationResultto check- Returns:
- a Mono of the
AuthorizationDecisionor an emptyMonoif thePostAuthorizeannotation is not present
-
-