|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ActionForward | |
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 |
Uses of ActionForward in org.apache.struts.action |
Subclasses of ActionForward in org.apache.struts.action | |
class |
ForwardingActionForward
A subclass of ActionForward that defaults the redirect attribute to false . |
class |
RedirectingActionForward
A subclass of ActionForward that defaults the redirect attribute to true . |
Methods in org.apache.struts.action that return ActionForward | |
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. |
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. |
ActionForward |
ActionServlet.findForward(java.lang.String name)
Deprecated. Replaced by ModuleConfig.findForwardConfig() |
ActionForward |
ActionMapping.findForward(java.lang.String name)
Find and return the ForwardConfig instance defining
how forwarding to the specified logical name should be handled. |
ActionForward |
ActionMapping.getInputForward()
Create (if necessary) and return an ActionForward that
corresponds to the input property of this Action. |
ActionForward |
ActionForwards.findForward(java.lang.String name)
Deprecated. Return the forwarding associated with the specified logical name, if any; otherwise return null . |
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 |
Methods in org.apache.struts.action with parameters of type ActionForward | |
protected void |
RequestProcessor.processActionForward(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
ActionForward forward)
Deprecated. Use processForwardConfig() instead. |
protected void |
ExceptionHandler.storeException(javax.servlet.http.HttpServletRequest request,
java.lang.String property,
ActionError error,
ActionForward forward,
java.lang.String scope)
Default implementation for handling an ActionError generated from an Exception during Action delegation. |
void |
ActionForwards.addForward(ActionForward forward)
Deprecated. Register a logical forwarding to the set configured for this servlet. |
void |
ActionForwards.removeForward(ActionForward forward)
Deprecated. Deregister a forwarding from the set configured for this servlet. |
Uses of ActionForward in org.apache.struts.actions |
Methods in org.apache.struts.actions that return ActionForward | |
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 |
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 |
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). |
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. |
Uses of ActionForward in org.apache.struts.config |
Fields in org.apache.struts.config declared as ActionForward | |
private ActionForward |
ConfigHelper.forward
The forward associated with this instance. |
Methods in org.apache.struts.config that return ActionForward | |
ActionForward |
ConfigHelperInterface.getActionForward(java.lang.String name)
Return the forwarding associated with the specified logical name, if any; otherwise return null . |
ActionForward |
ConfigHelper.getActionForward(java.lang.String name)
Return the forwarding associated with the specified logical name, if any; otherwise return null . |
Methods in org.apache.struts.config with parameters of type ActionForward | |
void |
ConfigHelper.setForward(ActionForward forward)
Set the forward associated with this instance. |
Uses of ActionForward in org.apache.struts.tiles |
Methods in org.apache.struts.tiles with parameters of type ActionForward | |
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. |
Uses of ActionForward in org.apache.struts.tiles.actions |
Methods in org.apache.struts.tiles.actions that return ActionForward | |
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 |
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 |
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. |
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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |