org.directwebremoting.extend
Interface Handler
- All Known Implementing Classes:
- AboutHandler, AuthHandler, EngineHandler, ExceptionHandler, FileHandler, HtmlCallHandler, HtmlPollHandler, IndexHandler, InterfaceHandler, NotFoundHandler, PlainCallHandler, PlainPollHandler, PollHandler, TestHandler, UrlProcessor, UtilHandler, WebworkUtilHandler
public interface Handler
A handler is a very simple servlet that does not differentiate between GET
and POST, or need complex setup beyond what the container can provide
- Author:
- Joe Walker [joe at getahead dot ltd dot uk]
Method Summary |
void |
handle(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handle a URL request that has been mapped to this Handler |
handle
void handle(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.io.IOException
- Handle a URL request that has been mapped to this Handler
- Parameters:
request
- The HTTP request dataresponse
- Where we write the HTTP response data
- Throws:
java.io.IOException
- If the write process fails