Hi Cris, On Wed, 2020-07-08 at 14:59 -0400, Cris Rockwell wrote: > It looks like JackrabbitAccessControlManager ( > https://jackrabbit.apache.org/oak/docs/security/accesscontrol/editing.html > <https://jackrabbit.apache.org/oak/docs/security/accesscontrol/editi > ng.html>) might offer this utility, but so far I’m not able to find > it in a bundle provided by Sling 12
The AccessControlManager is obtained from a javax.jcr.Session using session.getAccessControlManager() It is usually safe to downcast to a JackrabbitAccessControlManager, if you need the extra functionality exposes by that interface. Thanks, Robert