JavaDoc updates.

This commit is contained in:
Ben Alex 2004-04-11 12:05:46 +00:00
parent 7387c7f231
commit 670d007630
2 changed files with 8 additions and 5 deletions

View File

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

View File

@ -38,8 +38,11 @@ import javax.servlet.http.HttpSession;
* This filter is normally used in conjunction with {@link * This filter is normally used in conjunction with {@link
* AuthenticationProcessingFilter}, which populates the * AuthenticationProcessingFilter}, which populates the
* <code>HttpSession</code> with an <code>Authentication</code> object based * <code>HttpSession</code> with an <code>Authentication</code> object based
* on a form login. Alternatively, users may elect to use their own approach * on a form login. Similarly, the {@link
* for populating the <code>HttpSession</code>. * 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>
* *
* <p> * <p>