com.opensymphony.xwork2
Class DefaultActionProxy

java.lang.Object
  extended by com.opensymphony.xwork2.DefaultActionProxy
All Implemented Interfaces:
ActionProxy, Serializable

public class DefaultActionProxy
extends Object
implements ActionProxy, Serializable

The Default ActionProxy implementation

Since:
2005-8-6
Version:
$Date: 2009-05-08 05:54:47 +0200 (Fr, 08 Mai 2009) $ $Id: DefaultActionProxy.java 1991 2009-05-08 03:54:47Z musachy $
Author:
Rainer Hermanns, Revised by Henry Hu, tmjee
See Also:
Serialized Form

Field Summary
protected  ActionEventListener actionEventListener
           
protected  String actionName
           
protected  boolean cleanupContext
           
protected  ActionConfig config
           
protected  Configuration configuration
           
protected  boolean executeResult
           
protected  ActionInvocation invocation
           
protected  String method
           
protected  String namespace
           
protected  ObjectFactory objectFactory
           
protected  UnknownHandlerManager unknownHandlerManager
           
 
Constructor Summary
protected DefaultActionProxy(ActionInvocation inv, String namespace, String actionName, String methodName, boolean executeResult, boolean cleanupContext)
          This constructor is private so the builder methods (create*) should be used to create an DefaultActionProxy.
 
Method Summary
 String execute()
          Execute this ActionProxy.
 Object getAction()
          Gets the Action instance for this Proxy.
 String getActionName()
          Gets the alias name this ActionProxy is mapped to.
 ActionConfig getConfig()
          Gets the ActionConfig this ActionProxy is built from.
 boolean getExecuteResult()
          Gets the status of whether the ActionProxy is set to execute the Result after the Action is executed.
 ActionInvocation getInvocation()
          Gets the ActionInvocation associated with this ActionProxy.
 String getMethod()
          Gets the method name to execute, or null if no method has been specified (meaning execute will be invoked).
 String getNamespace()
          Gets the namespace the ActionConfig for this ActionProxy is mapped to.
protected  void prepare()
           
 void setActionEventListener(ActionEventListener listener)
           
 void setConfiguration(Configuration config)
           
 void setExecuteResult(boolean executeResult)
          Sets whether this ActionProxy should also execute the Result after executing the Action.
 void setObjectFactory(ObjectFactory factory)
           
 void setUnknownHandler(UnknownHandlerManager unknownHandlerManager)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

configuration

protected Configuration configuration

config

protected ActionConfig config

invocation

protected ActionInvocation invocation

unknownHandlerManager

protected UnknownHandlerManager unknownHandlerManager

actionName

protected String actionName

namespace

protected String namespace

method

protected String method

executeResult

protected boolean executeResult

cleanupContext

protected boolean cleanupContext

objectFactory

protected ObjectFactory objectFactory

actionEventListener

protected ActionEventListener actionEventListener
Constructor Detail

DefaultActionProxy

protected DefaultActionProxy(ActionInvocation inv,
                             String namespace,
                             String actionName,
                             String methodName,
                             boolean executeResult,
                             boolean cleanupContext)
This constructor is private so the builder methods (create*) should be used to create an DefaultActionProxy.

The reason for the builder methods is so that you can use a subclass to create your own DefaultActionProxy instance (like a RMIActionProxy).

Method Detail

setObjectFactory

public void setObjectFactory(ObjectFactory factory)

setConfiguration

public void setConfiguration(Configuration config)

setUnknownHandler

public void setUnknownHandler(UnknownHandlerManager unknownHandlerManager)

setActionEventListener

public void setActionEventListener(ActionEventListener listener)

getAction

public Object getAction()
Description copied from interface: ActionProxy
Gets the Action instance for this Proxy.

Specified by:
getAction in interface ActionProxy
Returns:
the Action instance

getActionName

public String getActionName()
Description copied from interface: ActionProxy
Gets the alias name this ActionProxy is mapped to.

Specified by:
getActionName in interface ActionProxy
Returns:
the alias name

getConfig

public ActionConfig getConfig()
Description copied from interface: ActionProxy
Gets the ActionConfig this ActionProxy is built from.

Specified by:
getConfig in interface ActionProxy
Returns:
the ActionConfig

setExecuteResult

public void setExecuteResult(boolean executeResult)
Description copied from interface: ActionProxy
Sets whether this ActionProxy should also execute the Result after executing the Action.

Specified by:
setExecuteResult in interface ActionProxy
Parameters:
executeResult - true to also execute the Result.

getExecuteResult

public boolean getExecuteResult()
Description copied from interface: ActionProxy
Gets the status of whether the ActionProxy is set to execute the Result after the Action is executed.

Specified by:
getExecuteResult in interface ActionProxy
Returns:
the status

getInvocation

public ActionInvocation getInvocation()
Description copied from interface: ActionProxy
Gets the ActionInvocation associated with this ActionProxy.

Specified by:
getInvocation in interface ActionProxy
Returns:
the ActionInvocation

getNamespace

public String getNamespace()
Description copied from interface: ActionProxy
Gets the namespace the ActionConfig for this ActionProxy is mapped to.

Specified by:
getNamespace in interface ActionProxy
Returns:
the namespace

execute

public String execute()
               throws Exception
Description copied from interface: ActionProxy
Execute this ActionProxy. This will set the ActionContext from the ActionInvocation into the ActionContext ThreadLocal before invoking the ActionInvocation, then set the old ActionContext back into the ThreadLocal.

Specified by:
execute in interface ActionProxy
Returns:
the result code returned from executing the ActionInvocation
Throws:
Exception - can be thrown.
See Also:
ActionInvocation

getMethod

public String getMethod()
Description copied from interface: ActionProxy
Gets the method name to execute, or null if no method has been specified (meaning execute will be invoked).

Specified by:
getMethod in interface ActionProxy
Returns:
the method to execute

prepare

protected void prepare()


Copyright © 2009 OpenSymphony. All Rights Reserved.