Fixed doc links.

This commit is contained in:
Harald Kuhr 2011-04-07 13:48:10 +02:00
parent 63b5ae9994
commit 3f98534011
2 changed files with 9 additions and 9 deletions

View File

@ -56,7 +56,7 @@ import java.util.Enumeration;
* most basic types, if neccessary. * most basic types, if neccessary.
* <p/> * <p/>
* To write a generic filter, you need only override the abstract * To write a generic filter, you need only override the abstract
* {@link #doFilterImpl doFilterImpl} method. * {@link #doFilterImpl(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)} doFilterImpl} method.
* *
* @author <a href="mailto:harald.kuhr@gmail.com">Harald Kuhr</a> * @author <a href="mailto:harald.kuhr@gmail.com">Harald Kuhr</a>
* @author last modified by $Author: haku $ * @author last modified by $Author: haku $
@ -143,7 +143,7 @@ public abstract class GenericFilter implements Filter, FilterConfig, Serializabl
* @param pConfig the filter config * @param pConfig the filter config
* @throws ServletException if an error occurs during init * @throws ServletException if an error occurs during init
* *
* @see Filter#init * @see Filter#init(javax.servlet.FilterConfig)
* @see #init() init * @see #init() init
* @see BeanUtil#configure(Object, java.util.Map, boolean) * @see BeanUtil#configure(Object, java.util.Map, boolean)
*/ */
@ -185,7 +185,7 @@ public abstract class GenericFilter implements Filter, FilterConfig, Serializabl
* client request for a resource at the end of the chain. * client request for a resource at the end of the chain.
* <p/> * <p/>
* Subclasses <em>should not override this method</em>, but rather the * Subclasses <em>should not override this method</em>, but rather the
* abstract {@link #doFilterImpl doFilterImpl} method. * abstract {@link #doFilterImpl(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)} doFilterImpl} method.
* *
* @param pRequest the servlet request * @param pRequest the servlet request
* @param pResponse the servlet response * @param pResponse the servlet response
@ -194,8 +194,8 @@ public abstract class GenericFilter implements Filter, FilterConfig, Serializabl
* @throws IOException * @throws IOException
* @throws ServletException * @throws ServletException
* *
* @see Filter#doFilter Filter.doFilter * @see Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) Filter.doFilter
* @see #doFilterImpl doFilterImpl * @see #doFilterImpl(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) doFilterImpl
*/ */
public final void doFilter(final ServletRequest pRequest, final ServletResponse pResponse, final FilterChain pFilterChain) throws IOException, ServletException { public final void doFilter(final ServletRequest pRequest, final ServletResponse pResponse, final FilterChain pFilterChain) throws IOException, ServletException {
// If request filter and already run, continue chain and return fast // If request filter and already run, continue chain and return fast
@ -248,8 +248,8 @@ public abstract class GenericFilter implements Filter, FilterConfig, Serializabl
* @throws ServletException if an exception occurs during the filter process * @throws ServletException if an exception occurs during the filter process
* *
* @see #oncePerRequest * @see #oncePerRequest
* @see #doFilter doFilter * @see #doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) doFilter
* @see Filter#doFilter Filter.doFilter * @see Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) Filter.doFilter
*/ */
protected abstract void doFilterImpl(ServletRequest pRequest, ServletResponse pResponse, FilterChain pChain) protected abstract void doFilterImpl(ServletRequest pRequest, ServletResponse pResponse, FilterChain pChain)
throws IOException, ServletException; throws IOException, ServletException;

View File

@ -62,8 +62,8 @@ public abstract class ImageFilter extends GenericFilter {
* {@link #oncePerRequest} member variable. * {@link #oncePerRequest} member variable.
* *
* @see #oncePerRequest * @see #oncePerRequest
* @see com.twelvemonkeys.servlet.GenericFilter#doFilterImpl doFilter * @see com.twelvemonkeys.servlet.GenericFilter#doFilterImpl(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) doFilter
* @see Filter#doFilter Filter.doFilter * @see Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) Filter.doFilter
* *
* @param pRequest the servlet request * @param pRequest the servlet request
* @param pResponse the servlet response * @param pResponse the servlet response