Interface AuthorizationManager<T extends @Nullable Object>
- Type Parameters:
T- the type of object that the authorization check is being done on.
- All Known Implementing Classes:
AllAuthoritiesAuthorizationManager, AllRequiredFactorsAuthorizationManager, AuthenticatedAuthorizationManager, AuthoritiesAuthorizationManager, AuthorityAuthorizationManager, IpAddressAuthorizationManager, Jsr250AuthorizationManager, MessageMatcherDelegatingAuthorizationManager, MethodExpressionAuthorizationManager, ObservationAuthorizationManager, PostAuthorizeAuthorizationManager, PreAuthorizeAuthorizationManager, RequestMatcherDelegatingAuthorizationManager, RequiredAuthoritiesAuthorizationManager, SecuredAuthorizationManager, SingleResultAuthorizationManager, WebExpressionAuthorizationManager
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An Authorization manager which can determine if an
Authentication has access to
a specific object.-
Method Summary
Modifier and TypeMethodDescription@Nullable AuthorizationResultauthorize(Supplier<? extends @Nullable Authentication> authentication, T object) Determines if access is granted for a specific authentication and object.default voidverify(Supplier<? extends @Nullable Authentication> authentication, T object) Determines if access should be granted for a specific authentication and object.
-
Method Details
-
verify
Determines if access should be granted for a specific authentication and object.- Parameters:
authentication- theSupplierof theAuthenticationto checkobject- theTobject to check- Throws:
AccessDeniedException- if access is not granted
-
authorize
@Nullable AuthorizationResult authorize(Supplier<? extends @Nullable Authentication> authentication, T object) Determines if access is granted for a specific authentication and object.- Parameters:
authentication- theSupplierof theAuthenticationto authorizeobject- theTobject to authorize- Returns:
- an
AuthorizationResult - Since:
- 6.4
-