Class AbstractAclVoter
java.lang.Object
org.springframework.security.access.vote.AbstractAclVoter
- All Implemented Interfaces:
AccessDecisionVoter<org.aopalliance.intercept.MethodInvocation>
- Direct Known Subclasses:
AclEntryVoter
@Deprecated
public abstract class AbstractAclVoter
extends Object
implements AccessDecisionVoter<org.aopalliance.intercept.MethodInvocation>
Deprecated.
Now used by only-deprecated classes. Generally speaking, in-memory ACL is
no longer advised, so no replacement is planned at this point.
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
-
Method Summary
Modifier and TypeMethodDescriptionprotected Object
getDomainObjectInstance
(org.aopalliance.intercept.MethodInvocation invocation) Deprecated.Class<?>
Deprecated.void
setProcessDomainObjectClass
(Class<?> processDomainObjectClass) Deprecated.boolean
Deprecated.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
-
Constructor Details
-
AbstractAclVoter
public AbstractAclVoter()Deprecated.
-
-
Method Details
-
getDomainObjectInstance
Deprecated. -
getProcessDomainObjectClass
Deprecated. -
setProcessDomainObjectClass
Deprecated. -
supports
Deprecated.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
-