Whenever the containing web server receives a request, before passing it on to the main web application it should called the {@link #handle(String,String,RequestHandlerRequest,RequestHandlerResponse)}method on all registered request handlers.
Implementations should examine the request based on the arguments provided and if they wish to process the request, do so and return true
.
Returning false signifies that the handler didnt handle the request and it should be passed on to the next handler (if any).
|
|