org.makumba.commons.attributes
Class DatabaseConnectionControllerHandler

java.lang.Object
  extended by org.makumba.commons.ControllerHandler
      extended by org.makumba.commons.attributes.DatabaseConnectionControllerHandler

public class DatabaseConnectionControllerHandler
extends ControllerHandler

Version:
$Id: DatabaseConnectionControllerHandler.java 3698 2009-02-11 00:56:28Z rosso_nero $
Author:

Constructor Summary
DatabaseConnectionControllerHandler()
           
 
Method Summary
 void afterBeforeFilter(ServletRequest request, ServletResponse response, FilterConfig conf)
          Performs an operation before the doFilterChain() method is called, but after all ControllerHandler.beforeFilter(ServletRequest, ServletResponse, FilterConfig, ServletObjects) methods of all controller handlers registered in ControllerFilter have been called
 boolean beforeFilter(ServletRequest request, ServletResponse response, FilterConfig conf, ServletObjects httpServletObjects)
          Performs an operation before the doFilterChain() method is called
 void finalize(ServletRequest request, ServletResponse response)
          Performs cleanup operations after the filter operation is executed
 
Methods inherited from class org.makumba.commons.ControllerHandler
afterFilter, onError
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DatabaseConnectionControllerHandler

public DatabaseConnectionControllerHandler()
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

afterBeforeFilter

public void afterBeforeFilter(ServletRequest request,
                              ServletResponse response,
                              FilterConfig conf)
Description copied from class: ControllerHandler
Performs an operation before the doFilterChain() method is called, but after all ControllerHandler.beforeFilter(ServletRequest, ServletResponse, FilterConfig, ServletObjects) methods of all controller handlers registered in ControllerFilter have been called

Overrides:
afterBeforeFilter in class ControllerHandler

finalize

public void finalize(ServletRequest request,
                     ServletResponse response)
Description copied from class: ControllerHandler
Performs cleanup operations after the filter operation is executed

Overrides:
finalize in class ControllerHandler