You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:18:56 UTC

[sling-org-apache-sling-auth-form] 12/26: SLING-2080 Fix wrong JavaDoc references (Thanks Angela for reporting)

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag org.apache.sling.auth.form-1.0.4
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-auth-form.git

commit e145fd0fb733ea20ed55f1fb5fe97ec0a4698076
Author: Felix Meschberger <fm...@apache.org>
AuthorDate: Mon Nov 7 15:21:09 2011 +0000

    SLING-2080 Fix wrong JavaDoc references (Thanks Angela for reporting)
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/auth/form@1198776 13f79535-47bb-0310-9956-ffa450edef68
---
 .../auth/form/impl/FormAuthenticationHandler.java    | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/sling/auth/form/impl/FormAuthenticationHandler.java b/src/main/java/org/apache/sling/auth/form/impl/FormAuthenticationHandler.java
index cb9c72b..f18616b 100644
--- a/src/main/java/org/apache/sling/auth/form/impl/FormAuthenticationHandler.java
+++ b/src/main/java/org/apache/sling/auth/form/impl/FormAuthenticationHandler.java
@@ -463,7 +463,7 @@ public class FormAuthenticationHandler extends AbstractAuthenticationHandler {
         // to the j_security_check URL
         if (REQUEST_METHOD.equals(request.getMethod())
         		&& request.getRequestURI().endsWith(REQUEST_URL_SUFFIX)) {
-        	
+
             if (DefaultAuthenticationFeedbackHandler.handleRedirect(request, response)) {
             	// terminate request, all done in the default handler
             	result = false;
@@ -809,11 +809,11 @@ public class FormAuthenticationHandler extends AbstractAuthenticationHandler {
 
     /**
      * The <code>AuthenticationStorage</code> interface abstracts the API
-     * required to store the {@link CookieAuthData} in an HTTP cookie or in an
-     * HTTP Session. The concrete class -- {@link CookieExtractor} or
-     * {@link SessionExtractor} -- is selected using the
-     * {@link CookieAuthenticationHandler#PAR_AUTH_HASH_STORAGE} configuration
-     * parameter, {@link CookieExtractor} by default.
+     * required to store the authentication data in an HTTP cookie or in an
+     * HTTP Session. The concrete class -- {@link CookieStorage} or
+     * {@link SessionStorage} -- is selected using the
+     * {@link FormAuthenticationHandler#PAR_AUTH_STORAGE} configuration
+     * parameter, {@link CookieStorage} by default.
      */
     private static interface AuthenticationStorage {
         String extractAuthenticationInfo(HttpServletRequest request);
@@ -825,8 +825,8 @@ public class FormAuthenticationHandler extends AbstractAuthenticationHandler {
     }
 
     /**
-     * The <code>CookieExtractor</code> class supports storing the
-     * {@link CookieAuthData} in an HTTP Cookie.
+     * The <code>CookieStorage</code> class supports storing the
+     * authentication data in an HTTP Cookie.
      */
     private static class CookieStorage implements AuthenticationStorage {
 
@@ -965,8 +965,8 @@ public class FormAuthenticationHandler extends AbstractAuthenticationHandler {
     }
 
     /**
-     * The <code>SessionExtractor</code> class provides support to store the
-     * {@link CookieAuthData} in an HTTP Session.
+     * The <code>SessionStorage</code> class provides support to store the
+     * authentication data in an HTTP Session.
      */
     private static class SessionStorage implements AuthenticationStorage {
         private final String sessionAttributeName;

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.