@@ -42,11 +42,11 @@ public abstract class AbstractFilter implements Filter {
4242
4343 /**
4444 * @see Filter#doFilter(ServletRequest, ServletResponse, FilterChain)
45- * @param request
46- * @param response
47- * @param chain
48- * @throws IOException
49- * @throws ServletException
45+ * @param request the request
46+ * @param response the response
47+ * @param chain the FilterChain
48+ * @throws IOException if there's an IO exception
49+ * @throws ServletException if there's a servlet exception
5050 */
5151 public final void doFilter (
5252 ServletRequest request , ServletResponse response ,
@@ -82,11 +82,15 @@ public void destroy() {
8282 * requests are given to the {@link RackDispatcher}, but you can extend
8383 * this method and return false if you want to signal that you don't want
8484 * the {@link RackDispatcher} to see the request.
85-
85+ *
86+ * @param request the request
87+ * @param response the response
88+ * @param chain the FilterChain
89+ * @param env the RackEnvironent
8690 * @return true if the dispatcher should handle the request, false if it
8791 * shouldn't.
88- * @throws IOException
89- * @throws ServletException
92+ * @throws IOException if there's an IO exception
93+ * @throws ServletException if there's a servlet exception
9094 */
9195 protected boolean isDoDispatch (
9296 RequestCapture request , ResponseCapture response ,
@@ -97,6 +101,14 @@ protected boolean isDoDispatch(
97101
98102 /**
99103 * @deprecated use {@link #isDoDispatch(RequestCapture, ResponseCapture, FilterChain, RackEnvironment)}
104+ * @param request the request
105+ * @param response the response
106+ * @param chain the FilterChain
107+ * @param env the RackEnvironent
108+ * @param responseEnv the RackResponseEnvironment
109+ * @return isDoDispatch
110+ * @throws IOException if there's an IO exception
111+ * @throws ServletException if there's a servlet exception
100112 */
101113 @ Deprecated
102114 protected boolean isDoDispatch (
@@ -109,7 +121,7 @@ protected boolean isDoDispatch(
109121
110122 /**
111123 * Extension point if you'll need to customize {@link RequestCapture}
112- * @param request
124+ * @param request the request
113125 * @return request capture
114126 */
115127 protected RequestCapture wrapRequest (ServletRequest request ) {
@@ -118,7 +130,7 @@ protected RequestCapture wrapRequest(ServletRequest request) {
118130
119131 /**
120132 * Extension point if you'll need to customize {@link ResponseCapture}
121- * @param response
133+ * @param response the response
122134 * @return response capture
123135 */
124136 protected ResponseCapture wrapResponse (ServletResponse response ) {
0 commit comments