This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.jcr.jackrabbit.usermanager-2.2.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-jackrabbit-usermanager.git
commit a1c4e895e4dcf79bacdb410d2b8b20eeebf03005 Author: Eric Norman <[email protected]> AuthorDate: Sun May 1 22:59:23 2011 +0000 correct some errors in the javadocs git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jackrabbit-usermanager@1098434 13f79535-47bb-0310-9956-ffa450edef68 --- .../usermanager/impl/post/ChangeUserPasswordServlet.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/sling/jackrabbit/usermanager/impl/post/ChangeUserPasswordServlet.java b/src/main/java/org/apache/sling/jackrabbit/usermanager/impl/post/ChangeUserPasswordServlet.java index a741b2c..9f5a6ac 100644 --- a/src/main/java/org/apache/sling/jackrabbit/usermanager/impl/post/ChangeUserPasswordServlet.java +++ b/src/main/java/org/apache/sling/jackrabbit/usermanager/impl/post/ChangeUserPasswordServlet.java @@ -33,10 +33,10 @@ import org.apache.sling.servlets.post.Modification; /** * <p> - * Changes the password associated with a user. a new group. Maps on to nodes of resourceType <code>sling/groups</code> like + * Changes the password associated with a user. Maps on to nodes of resourceType <code>sling/user</code> like * <code>/rep:system/rep:userManager/rep:users/ae/fd/3e/ieb</code> mapped to a resource url * <code>/system/userManager/user/ieb</code>. This servlet responds at - * <code>/system/userManager/user/ieb.changePassword.create.html</code> + * <code>/system/userManager/user/ieb.changePassword.html</code> * </p> * <h4>Methods</h4> * <ul> @@ -54,11 +54,11 @@ import org.apache.sling.servlets.post.Modification; * <h4>Response</h4> * <dl> * <dt>200</dt> - * <dd>Sucess sent with no body</dd> + * <dd>Success sent with no body</dd> * <dt>404</dt> * <dd>If the user was not found.</dd> * <dt>500</dt> - * <dd>Failure, including group already exists. HTML explains the failure.</dd> + * <dd>Failure, including password validation errors. HTML explains the failure.</dd> * </dl> * <h4>Example</h4> * -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
