| org.acegisecurity.acl.AclManager
All known Subclasses: org.acegisecurity.acl.AclProviderManager, org.acegisecurity.MockAclManager,
AclManager | public interface AclManager (Code) | | Obtains the AclEntry instances that apply to a particular
domain object instance.
author: Ben Alex version: $Id: AclManager.java 1784 2007-02-24 21:00:24Z luke_t $ |
getAcls | AclEntry[] getAcls(Object domainInstance)(Code) | | Obtains the ACLs that apply to the specified domain instance.
Parameters: domainInstance - the instance for which ACL information is required (never null ) the ACLs that apply, or null if no ACLs apply to the specified domain instance |
getAcls | AclEntry[] getAcls(Object domainInstance, Authentication authentication)(Code) | | Obtains the ACLs that apply to the specified domain instance, but only including those ACLs which have
been granted to the presented Authentication object
Parameters: domainInstance - the instance for which ACL information is required (never null ) Parameters: authentication - the prncipal for which ACL information should be filtered (never null ) only those ACLs applying to the domain instance that have been granted to the principal (ornull ) if no such ACLs are found |
|
|