|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.acegisecurity.acls.jdbc.JdbcAclService
public class JdbcAclService
Simple JDBC-based implementation of AclService.
Requires the "dirty" flags in AclImpl and AccessControlEntryImpl to be set,
so that the implementation can detect changed parameters easily.
| Field Summary | |
|---|---|
protected JdbcTemplate |
jdbcTemplate
|
protected static Log |
log
|
| Constructor Summary | |
|---|---|
JdbcAclService(DataSource dataSource,
LookupStrategy lookupStrategy)
|
|
| Method Summary | |
|---|---|
ObjectIdentity[] |
findChildren(ObjectIdentity parentIdentity)
Locates all object identities that use the specified parent. |
Acl |
readAclById(ObjectIdentity object)
Same as AclService.readAclsById(ObjectIdentity[]) except it returns only a single Acl. |
Acl |
readAclById(ObjectIdentity object,
Sid[] sids)
Same as AclService.readAclsById(ObjectIdentity[], Sid[]) except it returns only a single Acl. |
Map |
readAclsById(ObjectIdentity[] objects)
Obtains all the Acls that apply for the passed Objects. |
Map |
readAclsById(ObjectIdentity[] objects,
Sid[] sids)
Obtains all the Acls that apply for the passed Objects, but only for the
security identifies passed. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected static final Log log
protected JdbcTemplate jdbcTemplate
| Constructor Detail |
|---|
public JdbcAclService(DataSource dataSource,
LookupStrategy lookupStrategy)
| Method Detail |
|---|
public ObjectIdentity[] findChildren(ObjectIdentity parentIdentity)
AclService
findChildren in interface AclServiceparentIdentity - to locate children of
null if none were found)
public Acl readAclById(ObjectIdentity object,
Sid[] sids)
throws NotFoundException
AclServiceAclService.readAclsById(ObjectIdentity[], Sid[]) except it returns only a single Acl.
readAclById in interface AclServiceobject - DOCUMENT ME!sids - DOCUMENT ME!
NotFoundException - DOCUMENT ME!
public Acl readAclById(ObjectIdentity object)
throws NotFoundException
AclServiceAclService.readAclsById(ObjectIdentity[]) except it returns only a single Acl.This method
should not be called as it does not leverage the underlaying implementation's potential ability to filter
Acl entries based on a Sid parameter.
readAclById in interface AclServiceobject - DOCUMENT ME!
NotFoundException - DOCUMENT ME!public Map readAclsById(ObjectIdentity[] objects)
AclServiceAcls that apply for the passed Objects.The returned map is
keyed on the passed objects, with the values being the Acl instances. Any unknown objects will not
have a map key.
readAclsById in interface AclServiceobjects - the objects to find ACL information for
null)
public Map readAclsById(ObjectIdentity[] objects,
Sid[] sids)
throws NotFoundException
AclServiceAcls that apply for the passed Objects, but only for the
security identifies passed.Implementations MAY provide a subset of the ACLs via this method although this is NOT a requirement. This is intended to allow performance optimisations within implementations. Callers should therefore use this method in preference to the alternative overloaded version which does not have performance optimisation opportunities.
The returned map is keyed on the passed objects, with the values being the Acl
instances. Any unknown objects (or objects for which the interested Sids do not have entries) will
not have a map key.
readAclsById in interface AclServiceobjects - the objects to find ACL information forsids - the security identities for which ACL information is required (may be null to denote
all entries)
null)
NotFoundException - DOCUMENT ME!
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||