Javadoc correction: ContextHolder -> SecurityContextHolder

This commit is contained in:
Luke Taylor 2005-10-18 15:44:22 +00:00
parent df4b8f602f
commit c065c46668

View File

@ -44,9 +44,9 @@ import javax.servlet.http.HttpServletResponse;
/** /**
* Processes a HTTP request's BASIC authorization headers, putting the result * Processes a HTTP request's BASIC authorization headers, putting the result
* into the <code>ContextHolder</code>. * into the <code>SecurityContextHolder</code>.
* *
* <P> * <p>
* For a detailed background on what this filter is designed to process, refer * For a detailed background on what this filter is designed to process, refer
* to <A HREF="http://www.faqs.org/rfcs/rfc1945.html">RFC 1945, Section * to <A HREF="http://www.faqs.org/rfcs/rfc1945.html">RFC 1945, Section
* 11.1</A>. Any realm name presented in the HTTP request is ignored. * 11.1</A>. Any realm name presented in the HTTP request is ignored.
@ -73,7 +73,7 @@ import javax.servlet.http.HttpServletResponse;
* *
* <P> * <P>
* If authentication is successful, the resulting {@link Authentication} object * If authentication is successful, the resulting {@link Authentication} object
* will be placed into the <code>ContextHolder</code>. * will be placed into the <code>SecurityContextHolder</code>.
* </p> * </p>
* *
* <p> * <p>
@ -82,7 +82,7 @@ import javax.servlet.http.HttpServletResponse;
* which will prompt the user to authenticate again via BASIC authentication. * which will prompt the user to authenticate again via BASIC authentication.
* </p> * </p>
* *
* <P> * <p>
* Basic authentication is an attractive protocol because it is simple and * Basic authentication is an attractive protocol because it is simple and
* widely deployed. However, it still transmits a password in clear text and * widely deployed. However, it still transmits a password in clear text and
* as such is undesirable in many situations. Digest authentication is also * 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}. * net.sf.acegisecurity.ui.digestauth.DigestProcessingFilter}.
* </p> * </p>
* *
* <P> * <p>
* <B>Do not use this class directly.</B> Instead configure * <b>Do not use this class directly.</b> Instead configure
* <code>web.xml</code> to use the {@link * <code>web.xml</code> to use the {@link
* net.sf.acegisecurity.util.FilterToBeanProxy}. * net.sf.acegisecurity.util.FilterToBeanProxy}.
* </p> * </p>