|
||||||||||
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.config | The "config" package contains configuration objects that correspond to
elements that may be specified in the struts-config.xml
module configuration file. |
Uses of ActionForward in org.apache.struts.action |
---|
Subclasses of ActionForward in org.apache.struts.action | |
---|---|
class |
ActionRedirect
A subclass of ActionForward which is designed for use in
redirecting requests, with support for adding parameters at runtime. |
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 | |
---|---|
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.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 |
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 |
ActionMapping.findForward(java.lang.String forwardName)
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. |
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. |
Methods in org.apache.struts.action with parameters of type ActionForward | |
---|---|
protected java.lang.String |
ExceptionHandler.determineIncludePath(ExceptionConfig config,
ActionForward actionForward)
Return a path to which an include should be attempted in the case when the response was committed before the ExceptionHandler
was invoked. |
protected void |
ExceptionHandler.handleCommittedResponse(java.lang.Exception ex,
ExceptionConfig config,
ActionMapping mapping,
ActionForm formInstance,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
ActionForward actionForward)
Attempt to give good information when the response has already been committed when the exception was thrown. |
protected void |
ExceptionHandler.storeException(javax.servlet.http.HttpServletRequest request,
java.lang.String property,
ActionMessage error,
ActionForward forward,
java.lang.String scope)
Default implementation for handling an ActionMessage
generated from an Exception during Action
delegation. |
Constructors in org.apache.struts.action with parameters of type ActionForward | |
---|---|
ActionForward(ActionForward copyMe)
Construct a new instance based on the values of another ActionForward. |
Uses of ActionForward in org.apache.struts.config |
---|
Methods in org.apache.struts.config that return ActionForward | |
---|---|
ActionForward |
ConfigHelper.getActionForward(java.lang.String name)
Return the forwarding associated with the specified logical name, if any; otherwise return null . |
ActionForward |
ConfigHelperInterface.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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |