Uses of Class
org.apache.struts.action.Action

Packages that use Action
org.apache.struts.action The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model. 
org.apache.struts.chain.commands Configurable commands that may be placed within the request processor. 
org.apache.struts.chain.commands.servlet Commands which are particular to servlet processing. 
org.apache.struts.chain.contexts This package provides objects that encapsulate access to the request and session-scoped resources to service command processing. 
org.apache.struts.mock Mock objects of the Struts Framework. 
 

Uses of Action in org.apache.struts.action
 

Methods in org.apache.struts.action that return Action
protected  Action RequestProcessor.processActionCreate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ActionMapping mapping)
          Return an Action 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 Action
protected  ActionForward RequestProcessor.processActionPerform(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Action action, ActionForm form, ActionMapping mapping)
          Ask the specified Action instance to handle this request.
 

Uses of Action in org.apache.struts.chain.commands
 

Methods in org.apache.struts.chain.commands that return Action
protected abstract  Action AbstractCreateAction.getAction(ActionContext context, java.lang.String type, ActionConfig actionConfig)
           Create and return the appropriate Action class for the given type and actionConfig.
 

Methods in org.apache.struts.chain.commands with parameters of type Action
protected abstract  ForwardConfig AbstractExecuteAction.execute(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm)
          Execute the specified Action, and return the resulting ForwardConfig.
 

Uses of Action in org.apache.struts.chain.commands.servlet
 

Methods in org.apache.struts.chain.commands.servlet that return Action
protected  Action CreateAction.createAction(ActionContext context, java.lang.String type)
          Invoked by getAction when the Action actually has to be created.
protected  Action CreateAction.getAction(ActionContext context, java.lang.String type, ActionConfig actionConfig)
           
 

Methods in org.apache.struts.chain.commands.servlet with parameters of type Action
protected  ForwardConfig ExecuteAction.execute(ActionContext context, Action action, ActionConfig actionConfig, ActionForm actionForm)
          Execute the specified Action, and return the resulting ActionForward.
 

Uses of Action in org.apache.struts.chain.contexts
 

Methods in org.apache.struts.chain.contexts that return Action
 Action ActionContext.getAction()
           Get the action which has been identified to be executed as part of processing this request.
 Action ActionContextBase.getAction()
           
 

Methods in org.apache.struts.chain.contexts with parameters of type Action
 void ActionContext.setAction(Action action)
           Set the action which has been identified to be executed as part of processing this request.
 void ActionContextBase.setAction(Action action)
           
 

Uses of Action in org.apache.struts.mock
 

Subclasses of Action in org.apache.struts.mock
 class MockAction
          General purpose Action for unit tests.
 



Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.