Uses of Class
org.apache.struts.action.Action
Packages that use 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
Fields in org.apache.struts.action with type parameters of type ActionModifier and TypeFieldDescriptionRequestProcessor.actions
The set ofAction
instances that have been created and initialized, keyed by the fully qualified Java class name of theAction
class.Methods in org.apache.struts.action that return ActionModifier 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.Methods in org.apache.struts.action with parameters of type ActionModifier 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
Methods in org.apache.struts.chain.commands that return ActionModifier and TypeMethodDescriptionprotected abstract Action
AbstractCreateAction.getAction
(ActionContext context, String type, ActionConfig actionConfig) Create and return the appropriateAction
class for the giventype
andactionConfig
.Methods in org.apache.struts.chain.commands with parameters of type ActionModifier 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
Methods in org.apache.struts.chain.commands.servlet that return ActionModifier 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) Methods in org.apache.struts.chain.commands.servlet with parameters of type ActionModifier 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
Methods in org.apache.struts.chain.contexts that return ActionModifier and TypeMethodDescriptionActionContext.getAction()
Get the action which has been identified to be executed as part of processing this request.ActionContextBase.getAction()
Methods in org.apache.struts.chain.contexts with parameters of type Action