Class SingleResultAuthorizationManager<C>
java.lang.Object
org.springframework.security.authorization.SingleResultAuthorizationManager<C>
- All Implemented Interfaces:
AuthorizationManager<C>
public final class SingleResultAuthorizationManager<C>
extends Object
implements AuthorizationManager<C>
An
AuthorizationManager
which creates permit-all and deny-all
AuthorizationManager
instances.- Since:
- 6.5
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionauthorize
(Supplier<Authentication> authentication, C object) Determines if access is granted for a specific authentication and object.check
(Supplier<Authentication> authentication, C object) Determines if access is granted for a specific authentication and object.static <C> SingleResultAuthorizationManager<C>
denyAll()
static <C> SingleResultAuthorizationManager<C>
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.AuthorizationManager
verify
-
Constructor Details
-
SingleResultAuthorizationManager
-
-
Method Details
-
check
Description copied from interface:AuthorizationManager
Determines if access is granted for a specific authentication and object.- Specified by:
check
in interfaceAuthorizationManager<C>
- Parameters:
authentication
- theSupplier
of theAuthentication
to checkobject
- theAuthorizationManager
object to check- Returns:
- an
AuthorizationDecision
or null if no decision could be made
-
authorize
Description copied from interface:AuthorizationManager
Determines if access is granted for a specific authentication and object.- Specified by:
authorize
in interfaceAuthorizationManager<C>
- Parameters:
authentication
- theSupplier
of theAuthentication
to authorizeobject
- theAuthorizationManager
object to authorize- Returns:
- an
AuthorizationResult
-
denyAll
-
permitAll
-