Class IgnoredPathsFilter
- java.lang.Object
-
- org.apache.tapestry5.internal.services.IgnoredPathsFilter
-
- All Implemented Interfaces:
HttpServletRequestFilter
public class IgnoredPathsFilter extends Object implements HttpServletRequestFilter
-
-
Constructor Summary
Constructors Constructor Description IgnoredPathsFilter(Collection<String> configuration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
service(HttpServletRequest request, HttpServletResponse response, HttpServletRequestHandler handler)
Filter interface for the HttpServletRequestHandler pipeline.
-
-
-
Constructor Detail
-
IgnoredPathsFilter
public IgnoredPathsFilter(Collection<String> configuration)
-
-
Method Detail
-
service
public boolean service(HttpServletRequest request, HttpServletResponse response, HttpServletRequestHandler handler) throws IOException
Description copied from interface:HttpServletRequestFilter
Filter interface for the HttpServletRequestHandler pipeline. A filter should delegate to the handler. It may perform operations before or after invoking the handler, and may modify the request and response passed in to the handler.- Specified by:
service
in interfaceHttpServletRequestFilter
- Returns:
- true if the request has been handled, false otherwise
- Throws:
IOException
-
-