Return-Path: Delivered-To: apmail-sling-commits-archive@www.apache.org Received: (qmail 28155 invoked from network); 7 Jan 2010 19:41:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Jan 2010 19:41:36 -0000 Received: (qmail 5347 invoked by uid 500); 7 Jan 2010 19:41:36 -0000 Delivered-To: apmail-sling-commits-archive@sling.apache.org Received: (qmail 5293 invoked by uid 500); 7 Jan 2010 19:41:36 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 5284 invoked by uid 99); 7 Jan 2010 19:41:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jan 2010 19:41:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jan 2010 19:41:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2025A23889FA; Thu, 7 Jan 2010 19:41:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r896981 - in /sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth: impl/SlingAuthenticator.java spi/AuthenticationInfo.java Date: Thu, 07 Jan 2010 19:41:15 -0000 To: commits@sling.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100107194115.2025A23889FA@eris.apache.org> Author: cziegeler Date: Thu Jan 7 19:41:14 2010 New Revision: 896981 URL: http://svn.apache.org/viewvc?rev=896981&view=rev Log: Some javadoc fixes. Modified: sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/impl/SlingAuthenticator.java sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/spi/AuthenticationInfo.java Modified: sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/impl/SlingAuthenticator.java URL: http://svn.apache.org/viewvc/sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/impl/SlingAuthenticator.java?rev=896981&r1=896980&r2=896981&view=diff ============================================================================== --- sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/impl/SlingAuthenticator.java (original) +++ sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/impl/SlingAuthenticator.java Thu Jan 7 19:41:14 2010 @@ -375,10 +375,9 @@ /** * Logs out the user calling all applicable - * {@link org.apache.sling.engine.auth.AuthenticationHandler2} + * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler} * authentication handlers. * - * @since 2.1 */ public void logout(HttpServletRequest request, HttpServletResponse response) { Modified: sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/spi/AuthenticationInfo.java URL: http://svn.apache.org/viewvc/sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/spi/AuthenticationInfo.java?rev=896981&r1=896980&r2=896981&view=diff ============================================================================== --- sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/spi/AuthenticationInfo.java (original) +++ sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/spi/AuthenticationInfo.java Thu Jan 7 19:41:14 2010 @@ -67,8 +67,8 @@ * the request is being handled. This property is set by the * {@link #AuthenticationInfo(String, String, char[], String)} constructor * and may be null if this instance is created by either the - * {@link #AuthenticationInfo(String, Credentials)} or - * {@link #AuthenticationInfo(String, Credentials, String)} constructors. + * {@link #AuthenticationInfo(String, String)} or + * {@link #AuthenticationInfo(String, String, char[])} constructors. *

* The type of this property, if present, is String. */ @@ -79,8 +79,8 @@ * behalf the request is being handled. This property is set by the * {@link #AuthenticationInfo(String, String, char[], String)} constructor * and may be null if this instance is created by either the - * {@link #AuthenticationInfo(String, Credentials)} or - * {@link #AuthenticationInfo(String, Credentials, String)} constructors. + * {@link #AuthenticationInfo(String, String)} or + * {@link #AuthenticationInfo(String, String, char[])} constructors. *

* The type of this property, if present, is char[]. */ @@ -89,8 +89,8 @@ /** * The name of the property providing the JCR credentials. These credentials * are preset to the credentials given to the - * {@link #AuthenticationInfo(String, Credentials)} or - * {@link #AuthenticationInfo(String, Credentials, String)} constructors. If + * {@link #AuthenticationInfo(String, String)} or + * {@link #AuthenticationInfo(String, String, char[])} constructors. * the {@link #AuthenticationInfo(String, String, char[], String)} * constructor is used the credentials property is set to a JCR * SimpleCredentials instance containing the user id and @@ -132,8 +132,6 @@ * @param authType The authentication type, must not be null. * @param userId The name of the user to authenticate as. This may be * null for the constructor and later be set. - * @param password The password to authenticate with or null if - * no password can be supplied. * @throws NullPointerException if authType is * null. */