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

Packages that use MutableAcl
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 MutableAcl in org.springframework.security.acls.domain
 

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

Methods in org.springframework.security.acls.domain that return MutableAcl
 MutableAcl EhCacheBasedAclCache.getFromCache(ObjectIdentity objectIdentity)
           
 MutableAcl EhCacheBasedAclCache.getFromCache(Serializable pk)
           
 

Methods in org.springframework.security.acls.domain with parameters of type MutableAcl
 void EhCacheBasedAclCache.putInCache(MutableAcl acl)
           
 

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

Methods in org.springframework.security.acls.jdbc that return MutableAcl
 MutableAcl JdbcMutableAclService.createAcl(ObjectIdentity objectIdentity)
           
 MutableAcl JdbcMutableAclService.updateAcl(MutableAcl acl)
          This implementation will simply delete all ACEs in the database and recreate them on each invocation of this method.
 

Methods in org.springframework.security.acls.jdbc with parameters of type MutableAcl
protected  void JdbcMutableAclService.createEntries(MutableAcl acl)
          Creates a new row in acl_entry for every ACE defined in the passed MutableAcl object.
 MutableAcl JdbcMutableAclService.updateAcl(MutableAcl acl)
          This implementation will simply delete all ACEs in the database and recreate them on each invocation of this method.
protected  void JdbcMutableAclService.updateObjectIdentity(MutableAcl acl)
          Updates an existing acl_object_identity row, with new information presented in the passed MutableAcl object.
 

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

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

Methods in org.springframework.security.acls.model that return MutableAcl
 MutableAcl MutableAclService.createAcl(ObjectIdentity objectIdentity)
          Creates an empty Acl object in the database.
 MutableAcl AclCache.getFromCache(ObjectIdentity objectIdentity)
           
 MutableAcl AclCache.getFromCache(Serializable pk)
           
 MutableAcl MutableAclService.updateAcl(MutableAcl acl)
          Changes an existing Acl in the database.
 

Methods in org.springframework.security.acls.model with parameters of type MutableAcl
 void AclCache.putInCache(MutableAcl acl)
           
 MutableAcl MutableAclService.updateAcl(MutableAcl acl)
          Changes an existing Acl in the database.
 



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