net.jspcontrols.dialogs.actions
Class TransferForward

java.lang.Object
  extended byorg.apache.struts.config.ForwardConfig
      extended byorg.apache.struts.action.ActionForward
          extended bynet.jspcontrols.dialogs.actions.TransferForward
All Implemented Interfaces:
java.io.Serializable

public class TransferForward
extends org.apache.struts.action.ActionForward

A TransferForward represents a mapping used to transfer to another action or web resource, usually using redirection.

Since:
1.24
Author:
Michael Jouravlev
See Also:
Serialized Form

Field Summary
static org.apache.struts.action.ActionForward DIALOG_RELOAD
          This instance is used to designate a reload of an action.
 
Fields inherited from class org.apache.struts.config.ForwardConfig
configured, contextRelative, module, name, path, redirect
 
Constructor Summary
TransferForward()
          Construct a new instance of an ActionForward object with values, default for an event forward object: path is set to null, redirect is set to true.
TransferForward(java.lang.String path)
          Construct a new instance with the specified path.
 
Methods inherited from class org.apache.struts.config.ForwardConfig
freeze, getContextRelative, getModule, getName, getPath, getRedirect, setContextRelative, setModule, setName, setPath, setRedirect, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

DIALOG_RELOAD

public static final org.apache.struts.action.ActionForward DIALOG_RELOAD
This instance is used to designate a reload of an action. Returning this object from an event handler causes to reload the same action using GET request type.

Constructor Detail

TransferForward

public TransferForward()

Construct a new instance of an ActionForward object with values, default for an event forward object: path is set to null, redirect is set to true.

Event forward objects are intended to handle the first phase of two-phase request processing, thus they use redirect by default.


TransferForward

public TransferForward(java.lang.String path)

Construct a new instance with the specified path.

Parameters:
path - Path for this instance