org.makumba.controller
Class AJAXDataControllerHandler

java.lang.Object
  extended by org.makumba.commons.ControllerHandler
      extended by org.makumba.controller.AJAXDataControllerHandler

public class AJAXDataControllerHandler
extends ControllerHandler

ControllerHandler that handles AJAX-related data writing
FIXME does not seem to work for multiple forms

Version:
$Id: ResponseModifierControllerHandler.java,v 1.1 Dec 25, 2009 10:05:55 PM manu Exp $
Author:
Manuel Gay

Field Summary
(package private)  Logger logger
           
 
Constructor Summary
AJAXDataControllerHandler()
           
 
Method Summary
 void afterFilter(ServletRequest request, ServletResponse response, FilterConfig conf)
          Performs an operation after the doFilterChain() method is called
 boolean beforeFilter(ServletRequest request, ServletResponse response, FilterConfig conf, ServletObjects httpServletObjects)
          Performs an operation before the doFilterChain() method is called
 
Methods inherited from class org.makumba.commons.ControllerHandler
afterBeforeFilter, finalize, onError
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

logger

final Logger logger
Constructor Detail

AJAXDataControllerHandler

public AJAXDataControllerHandler()
Method Detail

beforeFilter

public boolean beforeFilter(ServletRequest request,
                            ServletResponse response,
                            FilterConfig conf,
                            ServletObjects httpServletObjects)
                     throws Exception
Description copied from class: ControllerHandler
Performs an operation before the doFilterChain() method is called

Overrides:
beforeFilter in class ControllerHandler
Returns:
true if the operation worked out successfully, false otherwise
Throws:
Exception

afterFilter

public void afterFilter(ServletRequest request,
                        ServletResponse response,
                        FilterConfig conf)
Description copied from class: ControllerHandler
Performs an operation after the doFilterChain() method is called

Overrides:
afterFilter in class ControllerHandler