net.sourceforge.stripes.controller
Interface ActionBeanContextFactory

All Superinterfaces:
ConfigurableComponent
All Known Implementing Classes:
DefaultActionBeanContextFactory

public interface ActionBeanContextFactory
extends ConfigurableComponent

Interface for classes that can instantiate and supply new instances of the ActionBeanContext class, or subclasses thereof.

Author:
Tim Fennell

Method Summary
 ActionBeanContext getContextInstance(HttpServletRequest request, HttpServletResponse response)
          Creates and returns a new instance of ActionBeanContext or a subclass.
 
Methods inherited from interface net.sourceforge.stripes.config.ConfigurableComponent
init
 

Method Detail

getContextInstance

ActionBeanContext getContextInstance(HttpServletRequest request,
                                     HttpServletResponse response)
                                     throws ServletException
Creates and returns a new instance of ActionBeanContext or a subclass.

Parameters:
request - the current HttpServletRequest
response - the current HttpServletResponse
Returns:
a new instance of ActionBeanContext
Throws:
ServletException - if the ActionBeanContext class configured cannot be instantiated


? Copyright 2005-2006, Stripes Development Team.