| org.acegisecurity.AccessDecisionManager
All known Subclasses: org.acegisecurity.MockAccessDecisionManager, org.acegisecurity.vote.AbstractAccessDecisionManager,
AccessDecisionManager | public interface AccessDecisionManager (Code) | | Makes a final access control (authorization) decision.
author: Ben Alex version: $Id: AccessDecisionManager.java 1784 2007-02-24 21:00:24Z luke_t $ |
supports | boolean supports(ConfigAttribute attribute)(Code) | | Indicates whether this AccessDecisionManager is able to process authorization requests
presented with the passed ConfigAttribute .This allows the
AbstractSecurityInterceptor to check every configuration attribute can be consumed by the
configured AccessDecisionManager and/or RunAsManager and/or
AfterInvocationManager .
Parameters: attribute - a configuration attribute that has been configured against theAbstractSecurityInterceptor true if this AccessDecisionManager can support the passed configuration attribute |
supports | boolean supports(Class clazz)(Code) | | Indicates whether the AccessDecisionManager implementation is able to provide access
control decisions for the indicated secured object type.
Parameters: clazz - the class that is being queried true if the implementation can process the indicated class |
|
|