Class AbstractAclVoter
- java.lang.Object
-
- org.springframework.security.access.vote.AbstractAclVoter
-
- All Implemented Interfaces:
AccessDecisionVoter<org.aopalliance.intercept.MethodInvocation>
- Direct Known Subclasses:
AclEntryVoter
public abstract class AbstractAclVoter extends java.lang.Object implements AccessDecisionVoter<org.aopalliance.intercept.MethodInvocation>
Provides helper methods for writing domain object ACL voters. Not bound to any particular ACL system.
-
-
Field Summary
-
Fields inherited from interface org.springframework.security.access.AccessDecisionVoter
ACCESS_ABSTAIN, ACCESS_DENIED, ACCESS_GRANTED
-
-
Constructor Summary
Constructors Constructor Description AbstractAclVoter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Object
getDomainObjectInstance(org.aopalliance.intercept.MethodInvocation invocation)
java.lang.Class<?>
getProcessDomainObjectClass()
void
setProcessDomainObjectClass(java.lang.Class<?> processDomainObjectClass)
boolean
supports(java.lang.Class<?> clazz)
This implementation supports onlyMethodSecurityInterceptor
, because it queries the presentedMethodInvocation
.-
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.access.AccessDecisionVoter
supports, vote
-
-
-
-
Method Detail
-
getDomainObjectInstance
protected java.lang.Object getDomainObjectInstance(org.aopalliance.intercept.MethodInvocation invocation)
-
getProcessDomainObjectClass
public java.lang.Class<?> getProcessDomainObjectClass()
-
setProcessDomainObjectClass
public void setProcessDomainObjectClass(java.lang.Class<?> processDomainObjectClass)
-
supports
public boolean supports(java.lang.Class<?> clazz)
This implementation supports onlyMethodSecurityInterceptor
, because it queries the presentedMethodInvocation
.- Specified by:
supports
in interfaceAccessDecisionVoter<org.aopalliance.intercept.MethodInvocation>
- Parameters:
clazz
- the secure object- Returns:
true
if the secure object isMethodInvocation
,false
otherwise
-
-