java.lang.Objectorg.apache.struts.config.ForwardConfig
org.apache.struts.action.ActionForward
net.jspcontrols.dialogs.actions.TransferForward
A TransferForward represents a mapping used to transfer to another action or web resource, usually using redirection.
path
value be interpreted as context-relative (instead of
module-relative, if it starts with a '/' character? [false]ActionMapping
.
true
if the controller
servlet should call HttpServletResponse.sendRedirect()
on the associated path; otherwise false
. [true]
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 |
public static final org.apache.struts.action.ActionForward DIALOG_RELOAD
Constructor Detail |
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.
public TransferForward(java.lang.String path)
Construct a new instance with the specified path.
path
- Path for this instance