Uses of Interface
org.springframework.security.acls.model.Acl

Packages that use Acl
org.springframework.security.acls.domain Basic implementation of access control lists (ACLs) interfaces. 
org.springframework.security.acls.jdbc JDBC-based persistence of ACL information. 
org.springframework.security.acls.model Interfaces and shared classes to manage access control lists (ACLs) for domain object instances. 
 

Uses of Acl in org.springframework.security.acls.domain
 

Classes in org.springframework.security.acls.domain that implement Acl
 class AclImpl
          Base implementation of Acl.
 

Methods in org.springframework.security.acls.domain that return Acl
 Acl AccessControlEntryImpl.getAcl()
           
 Acl AclImpl.getParentAcl()
           
 

Methods in org.springframework.security.acls.domain with parameters of type Acl
 void AclAuthorizationStrategyImpl.securityCheck(Acl acl, int changeType)
           
 void AclAuthorizationStrategy.securityCheck(Acl acl, int changeType)
           
 void AclImpl.setParent(Acl newParent)
           
 

Constructors in org.springframework.security.acls.domain with parameters of type Acl
AccessControlEntryImpl(Serializable id, Acl acl, Sid sid, Permission permission, boolean granting, boolean auditSuccess, boolean auditFailure)
           
AclImpl(ObjectIdentity objectIdentity, Serializable id, AclAuthorizationStrategy aclAuthorizationStrategy, AuditLogger auditLogger, Acl parentAcl, List<Sid> loadedSids, boolean entriesInheriting, Sid owner)
          Full constructor, which should be used by persistence tools that do not provide field-level access features.
 

Uses of Acl in org.springframework.security.acls.jdbc
 

Methods in org.springframework.security.acls.jdbc that return Acl
 Acl JdbcAclService.readAclById(ObjectIdentity object)
           
 Acl JdbcAclService.readAclById(ObjectIdentity object, List<Sid> sids)
           
 

Methods in org.springframework.security.acls.jdbc that return types with arguments of type Acl
 Map<ObjectIdentity,Acl> JdbcAclService.readAclsById(List<ObjectIdentity> objects)
           
 Map<ObjectIdentity,Acl> LookupStrategy.readAclsById(List<ObjectIdentity> objects, List<Sid> sids)
          Perform database-specific optimized lookup.
 Map<ObjectIdentity,Acl> JdbcAclService.readAclsById(List<ObjectIdentity> objects, List<Sid> sids)
           
 Map<ObjectIdentity,Acl> BasicLookupStrategy.readAclsById(List<ObjectIdentity> objects, List<Sid> sids)
          The main method.
 

Uses of Acl in org.springframework.security.acls.model
 

Subinterfaces of Acl in org.springframework.security.acls.model
 interface AuditableAcl
          A mutable ACL that provides audit capabilities.
 interface MutableAcl
          A mutable Acl.
 interface OwnershipAcl
          A mutable ACL that provides ownership capabilities.
 

Methods in org.springframework.security.acls.model that return Acl
 Acl AccessControlEntry.getAcl()
           
 Acl Acl.getParentAcl()
          A domain object may have a parent for the purpose of ACL inheritance.
 Acl AclService.readAclById(ObjectIdentity object)
          Same as #readAclsById(Java.util.List) except it returns only a single Acl.
 Acl AclService.readAclById(ObjectIdentity object, List<Sid> sids)
          Same as AclService.readAclsById(List, List) except it returns only a single Acl.
 

Methods in org.springframework.security.acls.model that return types with arguments of type Acl
 Map<ObjectIdentity,Acl> AclService.readAclsById(List<ObjectIdentity> objects)
          Obtains all the Acls that apply for the passed Objects.
 Map<ObjectIdentity,Acl> AclService.readAclsById(List<ObjectIdentity> objects, List<Sid> sids)
          Obtains all the Acls that apply for the passed Objects, but only for the security identifies passed.
 

Methods in org.springframework.security.acls.model with parameters of type Acl
 void MutableAcl.setParent(Acl newParent)
          Changes the parent of this ACL.
 



Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.