Package org.springframework.security.authorization.method
-
Class Summary Class Description AuthorizationManagerAfterMethodInterceptor AMethodInterceptor
which can determine if anAuthentication
has access to the result of anMethodInvocation
using anAuthorizationManager
AuthorizationManagerBeforeMethodInterceptor AMethodInterceptor
which uses aAuthorizationManager
to determine if anAuthentication
may invoke the givenMethodInvocation
ExpressionAttributeAuthorizationDecision Represents anAuthorizationDecision
based on aExpressionAttribute
Jsr250AuthorizationManager AnAuthorizationManager
which can determine if anAuthentication
may invoke theMethodInvocation
by evaluating if theAuthentication
contains a specified authority from the JSR-250 security annotations.MethodInvocationResult A context object that contains aMethodInvocation
and the result of thatMethodInvocation
.PostAuthorizeAuthorizationManager AnAuthorizationManager
which can determine if anAuthentication
may return the result from an invokedMethodInvocation
by evaluating an expression from thePostAuthorize
annotation.PostFilterAuthorizationMethodInterceptor AMethodInterceptor
which filters areturnedObject
from theMethodInvocation
by evaluating an expression from thePostFilter
annotation.PreAuthorizeAuthorizationManager AnAuthorizationManager
which can determine if anAuthentication
may invoke theMethodInvocation
by evaluating an expression from thePreAuthorize
annotation.PreFilterAuthorizationMethodInterceptor AMethodInterceptor
which filters a method argument by evaluating an expression from thePreFilter
annotation.SecuredAuthorizationManager AnAuthorizationManager
which can determine if anAuthentication
may invoke theMethodInvocation
by evaluating if theAuthentication
contains a specified authority from the Spring Security'sSecured
annotation. -
Enum Summary Enum Description AuthorizationInterceptorsOrder Ordering of Spring Security's authorizationAdvisor
s