Is there a way to read ACL Sid.
I have a requirement, where I need to get ACL for my logged in user.
I don't know Oid for these users. is there a straight way to
readAclBySid(List<Sid> sids) ?
Printable View
Is there a way to read ACL Sid.
I have a requirement, where I need to get ACL for my logged in user.
I don't know Oid for these users. is there a straight way to
readAclBySid(List<Sid> sids) ?
Did you solve your issue?
No direct way :(
Map<ObjectIdentity, Acl> m = readAclsById(List<ObjectIdentity> oid, List<Sid> sids)
then iterate the list and pick oids for my list.
You could extend the interface and add the method