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

Packages that use ActionForm
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.config The "config" package contains configuration objects that correspond to elements that may be specified in the struts-config.xml module configuration file. 
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.util The Utilities package provides a variety of families of classes, to solve problems that are commonly encountered in building web applications. 
org.apache.struts.validator The validator package provides a series of classes to validate ActionForm type of input. 
 

Uses of ActionForm in org.apache.struts.action
 

Subclasses of ActionForm in org.apache.struts.action
 class DynaActionForm
          Specialized subclass of ActionForm that allows the creation of form beans with dynamic sets of properties, without requiring the developer to create a Java class for each type of form bean.
 

Methods in org.apache.struts.action that return ActionForm
protected  ActionForm RequestProcessor.processActionForm(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ActionMapping mapping)
          Retrieve and return the ActionForm bean associated with this mapping, creating and stashing one if necessary.
 

Methods in org.apache.struts.action with parameters of type ActionForm
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.
protected  ActionForward RequestProcessor.processException(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Exception exception, ActionForm form, ActionMapping mapping)
          Ask our exception handler to handle the exception.
protected  void RequestProcessor.processPopulate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ActionForm form, ActionMapping mapping)
          Populate the properties of the specified ActionForm instance from the request parameters included with this request.
protected  boolean RequestProcessor.processValidate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, ActionForm form, ActionMapping mapping)
          If this request was not cancelled, and the request's ActionMapping has not disabled validation, call the validate() method of the specified ActionForm, and forward back to the input form if there were any errors.
 ActionForward Action.execute(ActionMapping mapping, ActionForm form, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response)
          Process the specified non-HTTP request, and create the corresponding non-HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward Action.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward Action.perform(ActionMapping mapping, ActionForm form, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response)
          Deprecated. Use the execute() method instead
 ActionForward Action.perform(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. Use the execute() method instead
 ActionForward ExceptionHandler.execute(java.lang.Exception ex, ExceptionConfig ae, ActionMapping mapping, ActionForm formInstance, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Handle the exception.
 

Uses of ActionForm in org.apache.struts.actions
 

Methods in org.apache.struts.actions with parameters of type ActionForm
 ActionForward LookupDispatchAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it).
 ActionForward ForwardAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it).
 ActionForward DispatchAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it).
protected  ActionForward DispatchAction.unspecified(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Method which is dispatched to when there is no value for specified request parameter included in the request.
protected  ActionForward DispatchAction.dispatchMethod(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String name)
          Dispatch to the specified method.
 ActionForward SwitchAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward IncludeAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it).
 

Uses of ActionForm in org.apache.struts.config
 

Methods in org.apache.struts.config that return ActionForm
 ActionForm ConfigHelper.getActionForm()
           
 ActionForm ConfigHelperInterface.getActionForm()
           
 

Uses of ActionForm in org.apache.struts.tiles
 

Methods in org.apache.struts.tiles with parameters of type ActionForm
protected  void ActionComponentServlet.processActionForward(ActionForward forward, ActionMapping mapping, ActionForm formInstance, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. Overload struts1.0 counterpart in order to catch forward calls.
protected  boolean ActionComponentServlet.processValidate(ActionMapping mapping, ActionForm formInstance, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. Overload struts1.0 counterpart in order to catch forward calls.
 

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

Methods in org.apache.struts.tiles.actions with parameters of type ActionForm
 ActionForward ReloadDefinitionsAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward DefinitionDispatcherAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward ViewDefinitionsAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward TilesAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Original Struts Action's method.
 ActionForward TilesAction.execute(ComponentContext context, ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process the specified HTTP request and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 ActionForward TilesAction.perform(ComponentContext context, ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. Use the execute() method instead
 ActionForward NoOpAction.execute(ActionMapping mapping, ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it), with provision for handling exceptions thrown by the business logic.
 

Uses of ActionForm in org.apache.struts.util
 

Methods in org.apache.struts.util that return ActionForm
static ActionForm RequestUtils.createActionForm(javax.servlet.http.HttpServletRequest request, ActionMapping mapping, ModuleConfig moduleConfig, ActionServlet servlet)
          Create (if necessary) and return an ActionForm instance appropriate for this request.
 

Uses of ActionForm in org.apache.struts.validator
 

Subclasses of ActionForm in org.apache.struts.validator
 class DynaValidatorActionForm
          This class extends DynaValidatorForm and provides basic field validation based on an XML file.
 class DynaValidatorForm
          This class extends DynaActionForm and provides basic field validation based on an XML file.
 class ValidatorActionForm
          This class extends ValidatorForm and provides basic field validation based on an XML file.
 class ValidatorForm
          This class extends ActionForm and provides basic field validation based on an XML file.
 



Copyright © 2000-2003 - Apache Software Foundation