Return-Path: Delivered-To: apmail-sling-commits-archive@www.apache.org Received: (qmail 68847 invoked from network); 18 Jan 2010 20:16:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 18 Jan 2010 20:16:18 -0000 Received: (qmail 72086 invoked by uid 500); 18 Jan 2010 20:16:18 -0000 Delivered-To: apmail-sling-commits-archive@sling.apache.org Received: (qmail 72035 invoked by uid 500); 18 Jan 2010 20:16:18 -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 72026 invoked by uid 99); 18 Jan 2010 20:16:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jan 2010 20:16:18 +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; Mon, 18 Jan 2010 20:16:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5B75B2388A02; Mon, 18 Jan 2010 20:15:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r900536 - in /sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth: Authenticator.java spi/AuthenticationInfo.java Date: Mon, 18 Jan 2010 20:15:57 -0000 To: commits@sling.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100118201557.5B75B2388A02@eris.apache.org> Author: cziegeler Date: Mon Jan 18 20:15:56 2010 New Revision: 900536 URL: http://svn.apache.org/viewvc?rev=900536&view=rev Log: FIx some javadocs Modified: sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/Authenticator.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/Authenticator.java URL: http://svn.apache.org/viewvc/sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/Authenticator.java?rev=900536&r1=900535&r2=900536&view=diff ============================================================================== --- sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/Authenticator.java (original) +++ sling/trunk/bundles/commons/auth/src/main/java/org/apache/sling/commons/auth/Authenticator.java Mon Jan 18 20:15:56 2010 @@ -26,9 +26,9 @@ * authenticator used by the Sling engine. This service provides a method to * find an {@link org.apache.sling.commons.auth.spi.AuthenticationHandler * AuthenticationHandler} and call its - * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#requestAuthentication(HttpServletRequest, HttpServletResponse) + * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#requestCredentials(HttpServletRequest, HttpServletResponse) * requestAuthentication} or - * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#dropAuthentication(HttpServletRequest, HttpServletResponse) + * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#dropCredentials(HttpServletRequest, HttpServletResponse) * dropAuthentication} methods. *

* This service is used by applications which want to provide functionality to @@ -93,7 +93,7 @@ /** * Finds an {@link org.apache.sling.commons.auth.spi.AuthenticationHandler} * for the given request and call its - * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#requestAuthentication(HttpServletRequest, HttpServletResponse)} + * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#requestCredentials(HttpServletRequest, HttpServletResponse)} * method to initiate an authentication process with the client to login to * Sling. *

@@ -116,7 +116,7 @@ /** * Finds an {@link org.apache.sling.commons.auth.spi.AuthenticationHandler} * for the given request and call its - * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#dropAuthentication(HttpServletRequest, HttpServletResponse)} + * {@link org.apache.sling.commons.auth.spi.AuthenticationHandler#dropCredentials(HttpServletRequest, HttpServletResponse)} * method to drop authentication credentials for the client to logout from * Sling. *

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=900536&r1=900535&r2=900536&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 Mon Jan 18 20:15:56 2010 @@ -26,7 +26,7 @@ /** * The AuthenticationInfo conveys any authentication credentials * and/or details extracted by the - * {@link AuthenticationHandler#authenticate(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)} + * {@link AuthenticationHandler#extractCredentials(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)} * method from the request. *

* {@link AuthenticationHandler} implementations must return instances of this @@ -42,7 +42,7 @@ /** * A special instance of this class which is returned by the - * {@link AuthenticationHandler#authenticate(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)} + * {@link AuthenticationHandler#extractCredentials(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)} * method to inform the caller, that a response has been sent to the client * to request for credentials. *