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

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

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

Methods in org.springframework.security.acls.domain that return ObjectIdentity
 ObjectIdentity ObjectIdentityRetrievalStrategyImpl.createObjectIdentity(Serializable id, String type)
           
 ObjectIdentity AclImpl.getObjectIdentity()
           
 ObjectIdentity ObjectIdentityRetrievalStrategyImpl.getObjectIdentity(Object domainObject)
           
 

Methods in org.springframework.security.acls.domain with parameters of type ObjectIdentity
 void EhCacheBasedAclCache.evictFromCache(ObjectIdentity objectIdentity)
           
 MutableAcl EhCacheBasedAclCache.getFromCache(ObjectIdentity objectIdentity)
           
 

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, 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 ObjectIdentity in org.springframework.security.acls.jdbc
 

Methods in org.springframework.security.acls.jdbc that return types with arguments of type ObjectIdentity
 List<ObjectIdentity> JdbcAclService.findChildren(ObjectIdentity parentIdentity)
           
 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.
 

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)
           
 List<ObjectIdentity> JdbcAclService.findChildren(ObjectIdentity parentIdentity)
           
 Acl JdbcAclService.readAclById(ObjectIdentity object)
           
 Acl JdbcAclService.readAclById(ObjectIdentity object, List<Sid> sids)
           
protected  Long JdbcMutableAclService.retrieveObjectIdentityPrimaryKey(ObjectIdentity oid)
          Retrieves the primary key from the acl_object_identity table for the passed ObjectIdentity.
 

Method parameters in org.springframework.security.acls.jdbc with type arguments of type ObjectIdentity
 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 ObjectIdentity in org.springframework.security.acls.model
 

Methods in org.springframework.security.acls.model that return ObjectIdentity
 ObjectIdentity ObjectIdentityGenerator.createObjectIdentity(Serializable id, String type)
           
 ObjectIdentity Acl.getObjectIdentity()
          Obtains the domain object this Acl provides entries for.
 ObjectIdentity ObjectIdentityRetrievalStrategy.getObjectIdentity(Object domainObject)
           
 

Methods in org.springframework.security.acls.model that return types with arguments of type ObjectIdentity
 List<ObjectIdentity> AclService.findChildren(ObjectIdentity parentIdentity)
          Locates all object identities that use the specified parent.
 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 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.
 void AclCache.evictFromCache(ObjectIdentity objectIdentity)
           
 List<ObjectIdentity> AclService.findChildren(ObjectIdentity parentIdentity)
          Locates all object identities that use the specified parent.
 MutableAcl AclCache.getFromCache(ObjectIdentity objectIdentity)
           
 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.
 

Method parameters in org.springframework.security.acls.model with type arguments of type ObjectIdentity
 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.
 



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