net.jspcontrols.dialogs.actions
Class RenderForward

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

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

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.

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

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

RenderForward

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.


RenderForward

public RenderForward(java.lang.String path)

Construct a new instance with the specified path.

Parameters:
path - Path for this instance