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 java.lang.Object implements ReactiveAuthorizationManager<T>
AReactiveAuthorizationManagerthat determines if the current user is authenticated.- Since:
 - 5.0 matter since the authorization decision does not use the object.
 
 
- 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> AuthenticatedReactiveAuthorizationManager<T>authenticated()Gets an instance ofAuthenticatedReactiveAuthorizationManagerreactor.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 Detail
- 
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.
 
 
- 
authenticated
public static <T> AuthenticatedReactiveAuthorizationManager<T> authenticated()
Gets an instance ofAuthenticatedReactiveAuthorizationManager- Type Parameters:
 T-- Returns:
 
 
 - 
 
 -