Package org.springframework.security.authorization.method
package org.springframework.security.authorization.method
-
ClassDescriptionOrdering of Spring Security's authorization
Advisor
sAMethodInterceptor
which can determine if anAuthentication
has access to the result of anMethodInvocation
using anAuthorizationManager
AMethodInterceptor
which uses aAuthorizationManager
to determine if anAuthentication
may invoke the givenMethodInvocation
Deprecated.AnAuthorizationManager
which can determine if anAuthentication
may invoke theMethodInvocation
by evaluating if theAuthentication
contains a specified authority from the JSR-250 security annotations.An expression-basedAuthorizationManager
that determines the access by evaluating the provided expression against theMethodInvocation
.A context object that contains aMethodInvocation
and the result of thatMethodInvocation
.AnAuthorizationManager
which can determine if anAuthentication
may return the result from an invokedMethodInvocation
by evaluating an expression from thePostAuthorize
annotation.AMethodInterceptor
which filters areturnedObject
from theMethodInvocation
by evaluating an expression from thePostFilter
annotation.AnAuthorizationManager
which can determine if anAuthentication
may invoke theMethodInvocation
by evaluating an expression from thePreAuthorize
annotation.AMethodInterceptor
which filters a method argument by evaluating an expression from thePreFilter
annotation.AnAuthorizationManager
which can determine if anAuthentication
may invoke theMethodInvocation
by evaluating if theAuthentication
contains a specified authority from the Spring Security'sSecured
annotation.
ExpressionAuthorizationDecision
instead