You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2017/03/30 10:57:52 UTC

svn commit: r1789495 - /sling/site/trunk/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.mdtext

Author: kwin
Date: Thu Mar 30 10:57:52 2017
New Revision: 1789495

URL: http://svn.apache.org/viewvc?rev=1789495&view=rev
Log:
add more information about the resource provider which exposes the authorizables

Modified:
    sling/site/trunk/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.mdtext

Modified: sling/site/trunk/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.mdtext?rev=1789495&r1=1789494&r2=1789495&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.mdtext (original)
+++ sling/site/trunk/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.mdtext Thu Mar 30 10:57:52 2017
@@ -1,6 +1,8 @@
 Title: Managing users and groups (jackrabbit.usermanager)
 
-The `jackrabbit-usermanager` bundle delivers a REST interface to create, update and delete users and groups in the JCR. After installing the `jackrabbit-usermanager` bundle all REST services are exposed under the path /system/userManager. Its interface is similar to the [SlingPostServlet]({{ refs.manipulating-content-the-slingpostservlet-servlets-post.path }}).
+The `jackrabbit-usermanager` bundle delivers a REST interface to create, update and delete users and groups in the JCR. After installing the `jackrabbit-usermanager` bundle all REST services are exposed under the path `/system/userManager`. Its interface for modifing/creating authorizables is similar to the [SlingPostServlet]({{ refs.manipulating-content-the-slingpostservlet-servlets-post.path }}).
+
+For getting information about existing authorizables it provides all authorizables as Sling resources through its `AuthorizableResourceProvider` below `/system/userManager/user` and `/system/userManager/group`. Those resources can be exposed via the [Default GET Servlet]({{ refs.rendering-content-default-get-servlets.path }}).
 
 [TOC]
 
@@ -57,7 +59,7 @@ Status Code | Description
 --- | ---
 200 | Success, a redirect is sent to the users resource locator with HTML (or JSON) describing status.
 500 | Failure, including user already exists. HTML (or JSON) explains failure.
-  
+
 Example with curl:
 
     curl -F:name=myuser -Fpwd=password -FpwdConfirm=password -Fanyproperty1=value1 \