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(HttpServletRequest request, HttpServletResponse response)
          Handle a URL request that has been mapped to this Handler
 

Method Detail

handle

void handle(HttpServletRequest request,
            HttpServletResponse response)
            throws java.io.IOException
Handle a URL request that has been mapped to this Handler

Parameters:
request - The HTTP request data
response - Where we write the HTTP response data
Throws:
java.io.IOException - If the write process fails