Spring Security Framework

org.springframework.security.acl.basic
Interface BasicAclDao

All Known Subinterfaces:
BasicAclExtendedDao
All Known Implementing Classes:
JdbcDaoImpl, JdbcExtendedDaoImpl

Deprecated. Use new spring-security-acl module instead

public interface BasicAclDao

Represents a data access object that can return the BasicAclEntrys applying to a given ACL object identity.

BasicAclDao implementations are responsible for interpreting a given AclObjectIdentity and being able to lookup and return the corresponding BasicAclEntry[]s.

BasicAclDaos many, but are not required to, allow the backend ACL repository to specify the class of BasicAclEntry implementations that should be returned.

Version:
$Id$
Author:
Ben Alex

Method Summary
 BasicAclEntry[] getAcls(AclObjectIdentity aclObjectIdentity)
          Deprecated. Obtains the ACLs that apply to the specified domain instance.
 

Method Detail

getAcls

BasicAclEntry[] getAcls(AclObjectIdentity aclObjectIdentity)
Deprecated. 
Obtains the ACLs that apply to the specified domain instance.

Does not perform caching, include ACLs from any inheritance hierarchy or filter returned objects based on effective permissions. Implementations are solely responsible for returning ACLs found in the ACL repository for the specified object identity.

Parameters:
aclObjectIdentity - the domain object instance that ACL information is being requested for (never null)
Returns:
the ACLs that apply (no nulls are permitted in the array), or null if no ACLs could be found for the specified ACL object identity

Spring Security Framework

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