From c065c46668e7caa161ac4352cac5ea3fa4bedee3 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 18 Oct 2005 15:44:22 +0000 Subject: [PATCH] Javadoc correction: ContextHolder -> SecurityContextHolder --- .../ui/basicauth/BasicProcessingFilter.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java b/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java index 37003f933f..fe1a55d00d 100644 --- a/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java +++ b/core/src/main/java/org/acegisecurity/ui/basicauth/BasicProcessingFilter.java @@ -44,9 +44,9 @@ import javax.servlet.http.HttpServletResponse; /** * Processes a HTTP request's BASIC authorization headers, putting the result - * into the ContextHolder. + * into the SecurityContextHolder. * - *

+ *

* For a detailed background on what this filter is designed to process, refer * to RFC 1945, Section * 11.1. Any realm name presented in the HTTP request is ignored. @@ -73,7 +73,7 @@ import javax.servlet.http.HttpServletResponse; * *

* If authentication is successful, the resulting {@link Authentication} object - * will be placed into the ContextHolder. + * will be placed into the SecurityContextHolder. *

* *

@@ -82,7 +82,7 @@ import javax.servlet.http.HttpServletResponse; * which will prompt the user to authenticate again via BASIC authentication. *

* - *

+ *

* Basic authentication is an attractive protocol because it is simple and * widely deployed. However, it still transmits a password in clear text and * as such is undesirable in many situations. Digest authentication is also @@ -91,8 +91,8 @@ import javax.servlet.http.HttpServletResponse; * net.sf.acegisecurity.ui.digestauth.DigestProcessingFilter}. *

* - *

- * Do not use this class directly. Instead configure + *

+ * Do not use this class directly. Instead configure * web.xml to use the {@link * net.sf.acegisecurity.util.FilterToBeanProxy}. *