Class ExecuteAction
java.lang.Object
org.apache.struts.chain.commands.ActionCommandBase
org.apache.struts.chain.commands.AbstractExecuteAction
org.apache.struts.chain.commands.servlet.ExecuteAction
- All Implemented Interfaces:
org.apache.commons.chain.Command<ActionContext>
,ActionCommand
Invoke the appropriate Action
for this request, and cache
the returned ActionForward
.
- Version:
- $Rev$ $Date: 2005-05-07 12:11:38 -0400 (Sat, 07 May 2005) $
-
Field Summary
Fields inherited from interface org.apache.commons.chain.Command
CONTINUE_PROCESSING, PROCESSING_COMPLETE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected ForwardConfig
execute
(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm) Execute the specifiedAction
, and return the resultingActionForward
.Methods inherited from class org.apache.struts.chain.commands.AbstractExecuteAction
execute_
Methods inherited from class org.apache.struts.chain.commands.ActionCommandBase
execute
-
Constructor Details
-
ExecuteAction
public ExecuteAction()
-
-
Method Details
-
execute
protected ForwardConfig execute(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm) throws Exception Execute the specified
Action
, and return the resultingActionForward
.- Specified by:
execute
in classAbstractExecuteAction
- Parameters:
context
- TheContext
for this requestaction
- TheAction
to be executedactionConfig
- TheActionConfig
defining this actionactionForm
- TheActionForm
(if any) for this action- Returns:
- ForwardConfig The next location, or null
- Throws:
Exception
- if thrown by theAction
-