Class AuthenticatedReactiveAuthorizationManager<T>
java.lang.Object
org.springframework.security.authorization.AuthenticatedReactiveAuthorizationManager<T>
- Type Parameters:
T
- The type of object authorization is being performed against. This does not
- All Implemented Interfaces:
ReactiveAuthorizationManager<T>
public class AuthenticatedReactiveAuthorizationManager<T>
extends Object
implements ReactiveAuthorizationManager<T>
A
ReactiveAuthorizationManager
that determines if the current user is
authenticated.- Since:
- 5.0 matter since the authorization decision does not use the object.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> AuthenticatedReactiveAuthorizationManager<T>
Gets an instance ofAuthenticatedReactiveAuthorizationManager
reactor.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, wait
Methods inherited from interface org.springframework.security.authorization.ReactiveAuthorizationManager
verify
-
Method Details
-
check
public reactor.core.publisher.Mono<AuthorizationDecision> check(reactor.core.publisher.Mono<Authentication> authentication, T object) Description copied from interface:ReactiveAuthorizationManager
Determines if access is granted for a specific authentication and object.- Specified by:
check
in interfaceReactiveAuthorizationManager<T>
- Parameters:
authentication
- the Authentication to checkobject
- the object to check- Returns:
- an decision or empty Mono if no decision could be made.
-
authenticated
Gets an instance ofAuthenticatedReactiveAuthorizationManager
- Type Parameters:
T
-- Returns:
-