Explorar o código

JavaDoc updates.

Ben Alex %!s(int64=21) %!d(string=hai) anos
pai
achega
670d007630

+ 3 - 3
core/src/main/java/org/acegisecurity/ui/webapp/AuthenticationProcessingFilter.java

@@ -79,7 +79,7 @@ import javax.servlet.http.HttpServletResponse;
  * desirable for  this filter to instantiate its own ApplicationContext
  * instance from which to obtain the AuthenticationManager, the location of
  * the config for this context may be specified with the optional
- * <code>appContextLocation</code> init param.
+ * <code>contextConfigLocation</code> init param.
  * </p>
  * 
  * <p>
@@ -105,8 +105,8 @@ import javax.servlet.http.HttpServletResponse;
  * <code>/j_acegi_security_check</code>.
  * </li>
  * <li>
- * <code>contextConfigLocation</code> (optional, normally not used), indicates the
- * path to an application context that contains an {@link
+ * <code>contextConfigLocation</code> (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)}

+ 5 - 2
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
  * <code>HttpSession</code> with an <code>Authentication</code> object based
- * on a form login. Alternatively, users may elect to use their own approach
- * for populating the <code>HttpSession</code>.
+ * on a form login. Similarly, the {@link
+ * net.sf.acegisecurity.ui.basicauth.BasicProcessingFilter} will populate the
+ * <code>HttpSession</code> based on a BASIC authentication request.
+ * Alternatively, users may elect to use their own approach for populating the
+ * <code>HttpSession</code>.
  * </p>
  * 
  * <p>