public abstract class AbstractExecuteAction extends ActionCommandBase
Invoke the appropriate Action
for this request, and cache
the returned ActionForward
.
Constructor and Description |
---|
AbstractExecuteAction() |
Modifier and Type | Method and Description |
---|---|
boolean |
execute(ActionContext actionCtx)
Invoke the appropriate
Action for this request, and
cache the returned ActionForward . |
protected abstract ForwardConfig |
execute(ActionContext context,
Action action,
ActionConfig actionConfig,
ActionForm actionForm)
Execute the specified
Action , and return the resulting
ForwardConfig . |
execute
public boolean execute(ActionContext actionCtx) throws Exception
Invoke the appropriate Action
for this request, and
cache the returned ActionForward
.
execute
in interface ActionCommand
execute
in class ActionCommandBase
actionCtx
- The Context
for the current requestfalse
so that processing continuesException
- if thrown by the Action classprotected abstract ForwardConfig execute(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm) throws Exception
Execute the specified Action
, and return the resulting
ForwardConfig
.
context
- The Context
for this requestaction
- The Action
to be executedactionConfig
- The ActionConfig
defining this actionactionForm
- The ActionForm
(if any) for this
actionException
- if thrown by the Action
Copyright © 2000–2016 Apache Software Foundation. All rights reserved.