* @see org.wymiwyg.rwcf.Handler#handle(org.wymiwyg.rwcf.Request,
* org.wymiwyg.rwcf.Response, org.wymiwyg.rwcf.HandlerChain)
*/
public void handle(Request request, Response response, HandlerChain chain)
throws HandlerException {
Method method = request.getMethod();
if (Method.POST.equals(method)) {
doPost(request, response);
} else {
doGet(request, response);
}