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 theRequestHandler
service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
service(HttpServletRequest request, HttpServletResponse response)
Returns true if the request was handled, false otherwise.
-
-
-
Method Detail
-
service
boolean service(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException
Returns true if the request was handled, false otherwise.- Throws:
java.io.IOException
-
-