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

Packages that use Action
examples   
examples.bean   
examples.dyna   
examples.links   
examples.localization   
examples.logic   
examples.multibox   
examples.options   
examples.simple   
examples.token   
examples.validator   
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.actions The actions package provides special adapters between the incoming HTTP request and the corresponding business logic. 
org.apache.struts.apps.mailreader.actions   
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.faces.application   
org.apache.struts.mock Mock objects of the Struts Framework. 
org.apache.struts.scripting The scripting package is the core of the Struts Scripting framework, which builds on Struts Action to allow Struts Actions be written with the scripting language of your choice. 
org.apache.struts.tiles
The Tiles taglib and framework allows building web pages by assembling reusable pieces of pages, called Tiles. 
org.apache.struts.tiles.actions   
org.apache.struts.webapp.dispatch   
org.apache.struts.webapp.el.exercise   
org.apache.struts.webapp.example   
org.apache.struts.webapp.exercise   
org.apache.struts.webapp.upload   
org.apache.struts.webapp.validator   
 

Uses of Action in examples
 

Subclasses of Action in examples
 class SuccessAction
          An Action that forwards control via a "success" ActionFoward.
 

Uses of Action in examples.bean
 

Subclasses of Action in examples.bean
 class PrepareBeanAction
          Perform any tasks and setup any data that must be prepared before the form is displayed.
 

Uses of Action in examples.dyna
 

Subclasses of Action in examples.dyna
 class ProcessDynaAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.links
 

Subclasses of Action in examples.links
 class PrepareLinksAction
          Perform any tasks and setup any data that must be prepared before the form is displayed.
 class ProcessLinksAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.localization
 

Subclasses of Action in examples.localization
 class ProcessLocalizationAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.logic
 

Subclasses of Action in examples.logic
 class PrepareLogicAction
          Perform any tasks and setup any data that must be prepared before the form is displayed.
 

Uses of Action in examples.multibox
 

Subclasses of Action in examples.multibox
 class PrepareMultiboxAction
          Perform any tasks and setup any data that must be prepared before the form is displayed.
 class ProcessMultiboxAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.options
 

Subclasses of Action in examples.options
 class PrepareOptionsAction
          Perform any tasks and setup any data that must be prepared before the form is displayed.
 class ProcessOptionsAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.simple
 

Subclasses of Action in examples.simple
 class ProcessSimpleAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.token
 

Subclasses of Action in examples.token
 class PrepareTokenAction
          Perform any tasks and setup any data that must be prepared before the form is displayed.
 class ProcessTokenAction
          Retrieve and process data from the submitted form
 

Uses of Action in examples.validator
 

Subclasses of Action in examples.validator
 class ProcessValidatorAction
          Retrieve and process data from the submitted form
 

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.actions
 

Subclasses of Action in org.apache.struts.actions
 class BaseAction
          BaseAction is provided as an intermediate class for shared funtionality between Action and any stock implementation provided in this package.
 class DispatchAction
          An abstract Action that dispatches to a public method that is named by the request parameter whose name is specified by the parameter property of the corresponding ActionMapping.
 class DownloadAction
          This is an abstract base class that minimizes the amount of special coding that needs to be written to download a file.
 class EventDispatchAction
          An Action that dispatches to to one of the public methods that are named in the parameter attribute of the corresponding ActionMapping and matches a submission parameter.
 class ForwardAction
          An Action that forwards to the context-relative URI specified by the parameter property of our associated ActionMapping.
 class IncludeAction
          An Action that includes the context-relative URI specified by the parameter property of our associated ActionMapping.
 class LookupDispatchAction
           An abstract Action that dispatches to the subclass mapped execute method.
 class MappingDispatchAction
          An abstract Action that dispatches to a public method that is named by the parameter attribute of the corresponding ActionMapping.
 class SwitchAction
          A standard Action that switches to a new module and then forwards control to a URI (specified in a number of possible ways) within the new module.
 

Fields in org.apache.struts.actions declared as Action
protected  Action ActionDispatcher.actionInstance
          The associated Action to dispatch to.
 

Constructors in org.apache.struts.actions with parameters of type Action
ActionDispatcher(Action actionInstance)
          Construct an instance of this class from the supplied parameters.
ActionDispatcher(Action actionInstance, int flavor)
          Construct an instance of this class from the supplied parameters.
EventActionDispatcher(Action action)
          Constructs a new object for the specified action.
 

Uses of Action in org.apache.struts.apps.mailreader.actions
 

Subclasses of Action in org.apache.struts.apps.mailreader.actions
 class MainMenuAction
           Forward to logon result if user object is missing, otherwise forward to the MainMenu result (success).
 class SubscriptionAction
           Provide an Edit method for retrieving an existing subscription, and a Save method for updating or inserting a subscription.
 class WelcomeAction
           Confirm required resources are available before displaying initial page.
 

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.faces.application
 

Methods in org.apache.struts.faces.application that return Action
protected  Action FacesRequestProcessor.processActionCreate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ActionMapping mapping)
           
protected  Action FacesTilesRequestProcessor.processActionCreate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ActionMapping mapping)
           
 

Methods in org.apache.struts.faces.application with parameters of type Action
protected  ActionForward FacesRequestProcessor.processActionPerform(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Action action, ActionForm form, ActionMapping mapping)
           
protected  ActionForward FacesTilesRequestProcessor.processActionPerform(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Action action, ActionForm form, ActionMapping mapping)
           
 

Uses of Action in org.apache.struts.mock
 

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

Uses of Action in org.apache.struts.scripting
 

Subclasses of Action in org.apache.struts.scripting
 class ScriptAction
          This Action uses scripts to perform its action.
 

Uses of Action in org.apache.struts.tiles
 

Constructors in org.apache.struts.tiles with parameters of type Action
ActionController(Action action)
          Constructor.
 

Uses of Action in org.apache.struts.tiles.actions
 

Subclasses of Action in org.apache.struts.tiles.actions
 class DefinitionDispatcherAction
          An Action that dispatches to a Tiles Definition that is named by the request parameter whose name is specified by the parameter property of the corresponding ActionMapping.
 class ReloadDefinitionsAction
          A standard Action that calls the reload() method of our controller servlet to reload its configuration information from the configuration files (which have presumably been updated) dynamically.
 class TilesAction
          Base class for Tiles Actions.
 class ViewDefinitionsAction
          An Action that writes the definitions of the Tiles factory.
 

Uses of Action in org.apache.struts.webapp.dispatch
 

Subclasses of Action in org.apache.struts.webapp.dispatch
 class ActionDispatcherExample
          Example DispatchAction.
 class DispatchExampleAction
          Example DispatchAction.
 class EventActionDispatcherExample
          Example EventActionDispatcher.
 class EventDispatchActionExample
          Example EventDispatchAction.
 class LookupDispatchExampleAction
          Example LookupDispatchAction.
 class MappingDispatchExampleAction
          Example DispatchAction.
 

Uses of Action in org.apache.struts.webapp.el.exercise
 

Subclasses of Action in org.apache.struts.webapp.el.exercise
 class DynaSetAction
           
 

Uses of Action in org.apache.struts.webapp.example
 

Subclasses of Action in org.apache.struts.webapp.example
 class EditRegistrationAction
          Implementation of Action that populates an instance of RegistrationForm from the profile of the currently logged on User (if any).
 class EditSubscriptionAction
          Implementation of Action that populates an instance of SubscriptionForm from the currently specified subscription.
 class LogoffAction
          Implementation of Action that processes a user logoff.
 class LogonAction
          Implementation of Action that validates a user logon.
 class SaveRegistrationAction
          Implementation of Action that validates and creates or updates the user registration information entered by the user.
 class SaveSubscriptionAction
          Implementation of Action that validates and creates or updates the mail subscription entered by the user.
 

Uses of Action in org.apache.struts.webapp.exercise
 

Subclasses of Action in org.apache.struts.webapp.exercise
 class HtmlSettersAction
          Do-nothing action that accepts the changes made automatically in our form bean, and then returns control to the input form (if "Save" was pressed) or the main menu (if "Cancel" was pressed).
 class ImageAction
          Read image from resource given as ActionMapping parameter and copy to output stream.
 

Uses of Action in org.apache.struts.webapp.upload
 

Subclasses of Action in org.apache.struts.webapp.upload
 class UploadAction
          This class takes the UploadForm and retrieves the text value and file attributes and puts them in the request for the display.jsp page to display them
 

Uses of Action in org.apache.struts.webapp.validator
 

Subclasses of Action in org.apache.struts.webapp.validator
 class EditTypeAction
          Initializes ActionForm.
 class LocaleAction
          Implementation of Action that changes the user's Locale and forwards to a page, based on request level parameters that are set (language, country, & page).
 class MultiRegistrationAction
          Implementation of Action that validates a multi-page registration form.
 class RegistrationAction
          Implementation of Action that validates a registration form.
 class ShowFileAction
          Action which retrieves a file specified in the parameter and stores its contents in the request, so that they can be displayed.
 class TypeAction
          Implementation of Action that validates a different 'types'.
 



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