userManager.findAuthorizables(Query query)
For UserManager interface findAuthorizables(Query query) method, query interface needs to be of org.apache.jackrabbit.api.security.user API.
I have to restrict path of an iteration that happens over a property jcr:primaryType with value rep:user. How can I create a query so that I can utilize the above method? Or is there any other way to achieve this?
Below is the query that is being executed.
/jcr:root/home//element(*)[@jcr:primaryType='rep:User']
I need to change the path from /home to /home/users. Is there a way I can do that?