com.opensymphony.xwork2
Interface ActionProxyFactory

All Known Implementing Classes:
DefaultActionProxyFactory

public interface ActionProxyFactory

The ActionProxyFactory is used to create ActionProxys to be executed.

It is the entry point to XWork that is used by a dispatcher to create an ActionProxy to execute for a particular namespace and action name.

Author:
Jason Carreira
See Also:
DefaultActionProxyFactory

Method Summary
 ActionProxy createActionProxy(ActionInvocation inv, String namespace, String actionName, Map extraContext, boolean executeResult, boolean cleanupContext)
           
 ActionProxy createActionProxy(String namespace, String actionName, Map extraContext)
          Creates an ActionProxy for the given namespace and action name by looking up the configuration.The ActionProxy should be fully initialized when it is returned, including having an ActionInvocation instance associated.
 ActionProxy createActionProxy(String namespace, String actionName, Map extraContext, boolean executeResult, boolean cleanupContext)
          Creates an ActionProxy for the given namespace and action name by looking up the configuration.The ActionProxy should be fully initialized when it is returned, including having an ActionInvocation instance associated.
 

Method Detail

createActionProxy

ActionProxy createActionProxy(String namespace,
                              String actionName,
                              Map extraContext)
                              throws Exception
Creates an ActionProxy for the given namespace and action name by looking up the configuration.The ActionProxy should be fully initialized when it is returned, including having an ActionInvocation instance associated.

Note: This is the most used create method.

Parameters:
namespace - the namespace of the action, can be null
actionName - the name of the action
extraContext - a Map of extra parameters to be provided to the ActionProxy, can be null
Returns:
ActionProxy the created action proxy
Throws:
Exception - can be thrown

createActionProxy

ActionProxy createActionProxy(String namespace,
                              String actionName,
                              Map extraContext,
                              boolean executeResult,
                              boolean cleanupContext)
                              throws Exception
Creates an ActionProxy for the given namespace and action name by looking up the configuration.The ActionProxy should be fully initialized when it is returned, including having an ActionInvocation instance associated.

Parameters:
namespace - the namespace of the action, can be null
actionName - the name of the action
extraContext - a Map of extra parameters to be provided to the ActionProxy, can be null
executeResult - flag which tells whether the result should be executed after the action
cleanupContext - flag which tells whether the original context should be preserved during execution of the proxy.
Returns:
ActionProxy the created action proxy
Throws:
Exception - can be thrown

createActionProxy

ActionProxy createActionProxy(ActionInvocation inv,
                              String namespace,
                              String actionName,
                              Map extraContext,
                              boolean executeResult,
                              boolean cleanupContext)
                              throws Exception
Throws:
Exception


Copyright © 2007 OpenSymphony. All Rights Reserved.