java.lang.Objectorg.apache.struts.config.ForwardConfig
org.apache.struts.action.ActionForward
net.jspcontrols.dialogs.actions.RenderForward
A RenderForward represents a mapping used to transfer to another action or web resource, usually using in-server forwarding. The primary usage of RenderForward is forwarding to JSP page corresponding to an action.
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
. [false]
Field Summary |
Fields inherited from class org.apache.struts.config.ForwardConfig |
configured, contextRelative, module, name, path, redirect |
Constructor Summary | |
RenderForward()
Construct a new instance of an ActionForward
object with values, default for an render forward object:
path is set to null, redirect is
set to false. |
|
RenderForward(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 |
Constructor Detail |
public RenderForward()
Construct a new instance of an ActionForward
object with values, default for an render forward object:
path
is set to null, redirect
is
set to false.
Render forward objects are intended to handle the second phase of two-phase request processing, thus they use server-side forwarding by default.
public RenderForward(java.lang.String path)
Construct a new instance with the specified path.
path
- Path for this instance