Uses of Class
org.apache.struts.action.Action
Package
Description
The action package is the core of the struts framework,
providing the "Controller" aspect of a MVC model.
Configurable commands that may be placed within the
request processor.
Commands which are particular to servlet processing.
This package provides objects that encapsulate access to
the request and session-scoped resources to service
command processing.
-
Uses of Action in org.apache.struts.action
Modifier and TypeFieldDescriptionRequestProcessor.actions
The set ofAction
instances that have been created and initialized, keyed by the fully qualified Java class name of theAction
class.Modifier and TypeMethodDescriptionprotected Action
RequestProcessor.processActionCreate
(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping) Return anAction
instance that will be used to process the current request, creating a new one if necessary.Modifier and TypeMethodDescriptionprotected ActionForward
RequestProcessor.processActionPerform
(HttpServletRequest request, HttpServletResponse response, Action action, ActionForm form, ActionMapping mapping) Ask the specifiedAction
instance to handle this request. -
Uses of Action in org.apache.struts.chain.commands
Modifier and TypeMethodDescriptionprotected abstract Action
AbstractCreateAction.getAction
(ActionContext context, String type, ActionConfig actionConfig) Create and return the appropriateAction
class for the giventype
andactionConfig
.Modifier and TypeMethodDescriptionprotected abstract ForwardConfig
AbstractExecuteAction.execute
(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm) Execute the specifiedAction
, and return the resultingForwardConfig
. -
Uses of Action in org.apache.struts.chain.commands.servlet
Modifier and TypeMethodDescriptionprotected Action
CreateAction.createAction
(ActionContext context, String type) Invoked bygetAction
when theAction
actually has to be created.protected Action
CreateAction.getAction
(ActionContext context, String type, ActionConfig actionConfig) Modifier and TypeMethodDescriptionprotected ForwardConfig
ExecuteAction.execute
(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm) Execute the specifiedAction
, and return the resultingActionForward
. -
Uses of Action in org.apache.struts.chain.contexts