Spring Security Framework

Uses of Interface
org.springframework.security.acl.basic.AclObjectIdentity

Packages that use AclObjectIdentity
org.springframework.security.acl.basic Access control list implementation based on integer bit masks. 
org.springframework.security.acl.basic.cache Caches ACL information for the BasicAclProvider
org.springframework.security.acl.basic.jdbc JDBC-based data access object for ACL information. 
 

Uses of AclObjectIdentity in org.springframework.security.acl.basic
 

Classes in org.springframework.security.acl.basic that implement AclObjectIdentity
 class NamedEntityObjectIdentity
          Deprecated. Use new spring-security-acl module instead
 

Methods in org.springframework.security.acl.basic that return AclObjectIdentity
 AclObjectIdentity BasicAclEntry.getAclObjectIdentity()
          Deprecated. Indicates the domain object instance that is subject of this BasicAclEntry.
 AclObjectIdentity AclObjectIdentityAware.getAclObjectIdentity()
          Deprecated. Retrieves the AclObjectIdentity for this instance.
 AclObjectIdentity AbstractBasicAclEntry.getAclObjectIdentity()
          Deprecated.  
 AclObjectIdentity BasicAclEntry.getAclObjectParentIdentity()
          Deprecated. Indicates any ACL parent of the domain object instance.
 AclObjectIdentity AbstractBasicAclEntry.getAclObjectParentIdentity()
          Deprecated.  
protected  AclObjectIdentity BasicAclProvider.obtainIdentity(Object domainInstance)
          Deprecated. This method looks up the AclObjectIdentity of a passed domain object instance.
 

Methods in org.springframework.security.acl.basic with parameters of type AclObjectIdentity
 void BasicAclExtendedDao.changeMask(AclObjectIdentity aclObjectIdentity, Object recipient, Integer newMask)
          Deprecated. Changes the permission mask assigned to the BasicAclEntry associated with the specified AclObjectIdentity and recipient Object.
 void BasicAclExtendedDao.delete(AclObjectIdentity aclObjectIdentity)
          Deprecated. Deletes all entries associated with the specified AclObjectIdentity.
 void BasicAclExtendedDao.delete(AclObjectIdentity aclObjectIdentity, Object recipient)
          Deprecated. Deletes the BasicAclEntry associated with the specified AclObjectIdentity and recipient Object.
 BasicAclEntry[] BasicAclDao.getAcls(AclObjectIdentity aclObjectIdentity)
          Deprecated. Obtains the ACLs that apply to the specified domain instance.
 BasicAclEntry[] BasicAclEntryCache.getEntriesFromCache(AclObjectIdentity aclObjectIdentity)
          Deprecated. Obtains an array of BasicAclEntrys from the cache.
 void BasicAclEntryCache.removeEntriesFromCache(AclObjectIdentity aclObjectIdentity)
          Deprecated. Removes all ACL entries related to an AclObjectIdentity from the cache.
 void BasicAclEntry.setAclObjectIdentity(AclObjectIdentity aclObjectIdentity)
          Deprecated. This setter should only be used by DAO implementations.
 void AbstractBasicAclEntry.setAclObjectIdentity(AclObjectIdentity aclObjectIdentity)
          Deprecated.  
 void BasicAclEntry.setAclObjectParentIdentity(AclObjectIdentity aclObjectParentIdentity)
          Deprecated. This setter should only be used by DAO implementations.
 void AbstractBasicAclEntry.setAclObjectParentIdentity(AclObjectIdentity aclObjectParentIdentity)
          Deprecated.  
 

Constructors in org.springframework.security.acl.basic with parameters of type AclObjectIdentity
AbstractBasicAclEntry(Object recipient, AclObjectIdentity aclObjectIdentity, AclObjectIdentity aclObjectParentIdentity, int mask)
          Deprecated.  
SimpleAclEntry(Object recipient, AclObjectIdentity aclObjectIdentity, AclObjectIdentity aclObjectParentIdentity, int mask)
          Deprecated.  
 

Uses of AclObjectIdentity in org.springframework.security.acl.basic.cache
 

Methods in org.springframework.security.acl.basic.cache with parameters of type AclObjectIdentity
 BasicAclEntry[] NullAclEntryCache.getEntriesFromCache(AclObjectIdentity aclObjectIdentity)
          Deprecated. As nothing ever stored in the cache, will always return null.
 BasicAclEntry[] EhCacheBasedAclEntryCache.getEntriesFromCache(AclObjectIdentity aclObjectIdentity)
          Deprecated.  
 void NullAclEntryCache.removeEntriesFromCache(AclObjectIdentity aclObjectIdentity)
          Deprecated. Meets method signature but doesn't remove from cache.
 void EhCacheBasedAclEntryCache.removeEntriesFromCache(AclObjectIdentity aclObjectIdentity)
          Deprecated.  
 

Uses of AclObjectIdentity in org.springframework.security.acl.basic.jdbc
 

Methods in org.springframework.security.acl.basic.jdbc that return AclObjectIdentity
 AclObjectIdentity JdbcDaoImpl.AclDetailsHolder.getAclObjectIdentity()
           
 AclObjectIdentity JdbcDaoImpl.AclDetailsHolder.getAclObjectParentIdentity()
           
 

Methods in org.springframework.security.acl.basic.jdbc with parameters of type AclObjectIdentity
 void JdbcExtendedDaoImpl.changeMask(AclObjectIdentity aclObjectIdentity, Object recipient, Integer newMask)
          Deprecated.  
protected  String JdbcDaoImpl.convertAclObjectIdentityToString(AclObjectIdentity aclObjectIdentity)
          Deprecated. Responsible for covering a AclObjectIdentity to a String that can be located in the RDBMS.
 void JdbcExtendedDaoImpl.delete(AclObjectIdentity aclObjectIdentity)
          Deprecated.  
 void JdbcExtendedDaoImpl.delete(AclObjectIdentity aclObjectIdentity, Object recipient)
          Deprecated.  
 BasicAclEntry[] JdbcDaoImpl.getAcls(AclObjectIdentity aclObjectIdentity)
          Deprecated. Returns the ACLs associated with the requested AclObjectIdentity.
 

Constructors in org.springframework.security.acl.basic.jdbc with parameters of type AclObjectIdentity
JdbcDaoImpl.AclDetailsHolder(long foreignKeyId, AclObjectIdentity aclObjectIdentity, AclObjectIdentity aclObjectParentIdentity, Class aclClass)
          Record details of a domain object instance's properties (usually from the ACL_OBJECT_IDENTITY table)
 


Spring Security Framework

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