java.lang.Objectorg.apache.struts.action.Action
org.apache.struts.chain.legacy.DispatchAction
An Action
implementation that delegates to a
Chain (or Command) that is specified by a request parameter
whose name is configured in the parameter
attribute
of the <action>
element configuring this action.
For example:
<action path="/myaction" type="org.apache.struts.chain.legacy.DispatchAction" name="myform" scope="request" input="/mypage.jsp" parameter="name-of-request-parameter"
Prior to calling the specified chain (or command), this action
sets up a Context
object containing the relevant
properties, along with the following additional attributes:
ActionMapping
passed
to our execute()
methodActionForm
passed to
our execute()
methodAfter execution of the specified command or chain is completed, the following context attributes are examined (in this order) to determine how to proceed.
java.lang.Exception
is found here, it will be rethrown as the outcome of this action.org.apache.struts.action.ActionForward
is found here,
it will be returned as the outcome of this action. Otherwise,
null
will be returned.Method from org.apache.struts.chain.legacy.DispatchAction Summary: |
---|
execute, getCatalog |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.struts.chain.legacy.DispatchAction Detail: |
---|
Delegate to the command chain specified in our configuration. |
Return the |