Interface HttpServletRequestHandler
- 
 @UsesOrderedConfiguration(HttpServletRequestFilter.class) public interface HttpServletRequestHandler The first step in handing an incoming request to the servlet filter, this constructed as a pipeline. The main implementation hands off to theRequestHandlerservice.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanservice(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Returns true if the request was handled, false otherwise.
 
- 
- 
- 
Method Detail- 
serviceboolean service(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.io.IOException Returns true if the request was handled, false otherwise.- Throws:
- java.io.IOException
 
 
- 
 
-