Spring Security Framework

Uses of Interface
org.springframework.security.acls.objectidentity.ObjectIdentity

Packages that use ObjectIdentity
org.springframework.security.acls Interfaces and shared classes to manage access control lists (ACLs) for domain object instances. 
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.objectidentity Provides indirection between ACL packages and domain objects. 
 

Uses of ObjectIdentity in org.springframework.security.acls
 

Methods in org.springframework.security.acls that return ObjectIdentity
 ObjectIdentity[] AclService.findChildren(ObjectIdentity parentIdentity)
          Locates all object identities that use the specified parent.
 ObjectIdentity Acl.getObjectIdentity()
          Obtains the domain object this Acl provides entries for.
 

Methods in org.springframework.security.acls with parameters of type ObjectIdentity
 MutableAcl MutableAclService.createAcl(ObjectIdentity objectIdentity)
          Creates an empty Acl object in the database.
 void MutableAclService.deleteAcl(ObjectIdentity objectIdentity, boolean deleteChildren)
          Removes the specified entry from the database.
 ObjectIdentity[] AclService.findChildren(ObjectIdentity parentIdentity)
          Locates all object identities that use the specified parent.
 Acl AclService.readAclById(ObjectIdentity object)
          Same as AclService.readAclsById(ObjectIdentity[]) except it returns only a single Acl.
 Acl AclService.readAclById(ObjectIdentity object, Sid[] sids)
          Same as AclService.readAclsById(ObjectIdentity[], Sid[]) except it returns only a single Acl.
 Map AclService.readAclsById(ObjectIdentity[] objects)
          Obtains all the Acls that apply for the passed Objects.
 Map AclService.readAclsById(ObjectIdentity[] objects, Sid[] sids)
          Obtains all the Acls that apply for the passed Objects, but only for the security identifies passed.
 

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

Methods in org.springframework.security.acls.domain that return ObjectIdentity
 ObjectIdentity AclImpl.getObjectIdentity()
           
 

Constructors in org.springframework.security.acls.domain with parameters of type ObjectIdentity
AclImpl(ObjectIdentity objectIdentity, Serializable id, AclAuthorizationStrategy aclAuthorizationStrategy, AuditLogger auditLogger)
          Minimal constructor, which should be used MutableAclService.createAcl(ObjectIdentity).
AclImpl(ObjectIdentity objectIdentity, Serializable id, AclAuthorizationStrategy aclAuthorizationStrategy, AuditLogger auditLogger, Acl parentAcl, 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 ObjectIdentity in org.springframework.security.acls.jdbc
 

Methods in org.springframework.security.acls.jdbc that return ObjectIdentity
 ObjectIdentity[] JdbcAclService.findChildren(ObjectIdentity parentIdentity)
           
 

Methods in org.springframework.security.acls.jdbc with parameters of type ObjectIdentity
 MutableAcl JdbcMutableAclService.createAcl(ObjectIdentity objectIdentity)
           
protected  void JdbcMutableAclService.createObjectIdentity(ObjectIdentity object, Sid owner)
          Creates an entry in the acl_object_identity table for the passed ObjectIdentity.
 void JdbcMutableAclService.deleteAcl(ObjectIdentity objectIdentity, boolean deleteChildren)
           
 void EhCacheBasedAclCache.evictFromCache(ObjectIdentity objectIdentity)
           
 void AclCache.evictFromCache(ObjectIdentity objectIdentity)
           
 ObjectIdentity[] JdbcAclService.findChildren(ObjectIdentity parentIdentity)
           
 MutableAcl EhCacheBasedAclCache.getFromCache(ObjectIdentity objectIdentity)
           
 MutableAcl AclCache.getFromCache(ObjectIdentity objectIdentity)
           
 Acl JdbcAclService.readAclById(ObjectIdentity object)
           
 Acl JdbcAclService.readAclById(ObjectIdentity object, Sid[] sids)
           
 Map JdbcAclService.readAclsById(ObjectIdentity[] objects)
           
 Map LookupStrategy.readAclsById(ObjectIdentity[] objects, Sid[] sids)
          Perform database-specific optimized lookup.
 Map JdbcAclService.readAclsById(ObjectIdentity[] objects, Sid[] sids)
           
 Map BasicLookupStrategy.readAclsById(ObjectIdentity[] objects, Sid[] sids)
          The main method.
protected  Long JdbcMutableAclService.retrieveObjectIdentityPrimaryKey(ObjectIdentity oid)
          Retrieves the primary key from the acl_object_identity table for the passed ObjectIdentity.
 

Uses of ObjectIdentity in org.springframework.security.acls.objectidentity
 

Classes in org.springframework.security.acls.objectidentity that implement ObjectIdentity
 class ObjectIdentityImpl
          Simple implementation of ObjectIdentity.
 

Methods in org.springframework.security.acls.objectidentity that return ObjectIdentity
 ObjectIdentity ObjectIdentityRetrievalStrategyImpl.getObjectIdentity(Object domainObject)
           
 ObjectIdentity ObjectIdentityRetrievalStrategy.getObjectIdentity(Object domainObject)
           
 


Spring Security Framework

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