From 670d00763033805bf7af27b659f5101c100fee85 Mon Sep 17 00:00:00 2001
From: Ben Alex appContextLocation
init param.
+ * contextConfigLocation
init param.
*
@@ -105,8 +105,8 @@ import javax.servlet.http.HttpServletResponse;
* /j_acegi_security_check
.
*
*
contextConfigLocation
(optional, normally not used), indicates the
- * path to an application context that contains an {@link
+ * contextConfigLocation
(optional, normally not used), indicates
+ * the path to an application context that contains an {@link
* AuthenticationManager} which should be used to process each authentication
* request. If not specified, {@link
* WebApplicationContextUtils#getWebApplicationContext(ServletContext sc)}
diff --git a/core/src/main/java/org/acegisecurity/ui/webapp/HttpSessionIntegrationFilter.java b/core/src/main/java/org/acegisecurity/ui/webapp/HttpSessionIntegrationFilter.java
index d04f5420ea..bf979efc4b 100644
--- a/core/src/main/java/org/acegisecurity/ui/webapp/HttpSessionIntegrationFilter.java
+++ b/core/src/main/java/org/acegisecurity/ui/webapp/HttpSessionIntegrationFilter.java
@@ -38,8 +38,11 @@ import javax.servlet.http.HttpSession;
* This filter is normally used in conjunction with {@link
* AuthenticationProcessingFilter}, which populates the
* HttpSession
with an Authentication
object based
- * on a form login. Alternatively, users may elect to use their own approach
- * for populating the HttpSession
.
+ * on a form login. Similarly, the {@link
+ * net.sf.acegisecurity.ui.basicauth.BasicProcessingFilter} will populate the
+ * HttpSession
based on a BASIC authentication request.
+ * Alternatively, users may elect to use their own approach for populating the
+ * HttpSession
.
*
*
*