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:
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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ForwardConfigexecute(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:
executein classAbstractExecuteAction- Parameters:
context- TheContextfor this requestaction- TheActionto be executedactionConfig- TheActionConfigdefining this actionactionForm- TheActionForm(if any) for this action- Returns:
- ForwardConfig The next location, or null
- Throws:
Exception- if thrown by theAction
-