public interface AclService
Acl instances.| Modifier and Type | Method and Description |
|---|---|
ObjectIdentity[] |
findChildren(ObjectIdentity parentIdentity)
Locates all object identities that use the specified parent.
|
Acl |
readAclById(ObjectIdentity object)
Same as
readAclsById(ObjectIdentity[]) except it returns only a single Acl. |
Acl |
readAclById(ObjectIdentity object,
Sid[] sids)
Same as
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. |
ObjectIdentity[] findChildren(ObjectIdentity parentIdentity)
parentIdentity - to locate children ofnull if none were found)Acl readAclById(ObjectIdentity object) throws NotFoundException
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.
object - DOCUMENT ME!NotFoundException - DOCUMENT ME!Acl readAclById(ObjectIdentity object, Sid[] sids) throws NotFoundException
readAclsById(ObjectIdentity[], Sid[]) except it returns only a single Acl.object - DOCUMENT ME!sids - DOCUMENT ME!NotFoundException - DOCUMENT ME!Map readAclsById(ObjectIdentity[] objects) throws NotFoundException
Acls 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.
objects - the objects to find ACL information fornull)NotFoundException - DOCUMENT ME!Map readAclsById(ObjectIdentity[] objects, Sid[] sids) throws NotFoundException
Acls 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.
objects - 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!Copyright © 2021. All rights reserved.