|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ActionForward in examples |
---|
Methods in examples that return ActionForward | |
---|---|
ActionForward |
SuccessAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Returns the ActionForward named "success" if one is
configured or null if it cannot be found. |
Uses of ActionForward in examples.bean |
---|
Methods in examples.bean that return ActionForward | |
---|---|
ActionForward |
PrepareBeanAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.dyna |
---|
Methods in examples.dyna that return ActionForward | |
---|---|
ActionForward |
ProcessDynaAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.links |
---|
Methods in examples.links that return ActionForward | |
---|---|
ActionForward |
ProcessLinksAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
ActionForward |
PrepareLinksAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.localization |
---|
Methods in examples.localization that return ActionForward | |
---|---|
ActionForward |
ProcessLocalizationAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.logic |
---|
Methods in examples.logic that return ActionForward | |
---|---|
ActionForward |
PrepareLogicAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.multibox |
---|
Methods in examples.multibox that return ActionForward | |
---|---|
ActionForward |
PrepareMultiboxAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
ActionForward |
ProcessMultiboxAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.options |
---|
Methods in examples.options that return ActionForward | |
---|---|
ActionForward |
PrepareOptionsAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
ActionForward |
ProcessOptionsAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.simple |
---|
Methods in examples.simple that return ActionForward | |
---|---|
ActionForward |
ProcessSimpleAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.token |
---|
Methods in examples.token that return ActionForward | |
---|---|
ActionForward |
PrepareTokenAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
ActionForward |
ProcessTokenAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
Uses of ActionForward in examples.validator |
---|
Methods in examples.validator that return ActionForward | |
---|---|
ActionForward |
ProcessValidatorAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the request and return an ActionForward instance
describing where and how control should be forwarded, or
null if the response has already been completed. |
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.actions |
---|
Methods in org.apache.struts.actions that return ActionForward | |
---|---|
protected ActionForward |
DispatchAction.cancelled(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Method which is dispatched to when the request is a cancel button submit. |
protected ActionForward |
ActionDispatcher.cancelled(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Dispatches to the target class' cancelled method, if present, otherwise returns null. |
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. |
protected ActionForward |
ActionDispatcher.dispatchMethod(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.lang.String name)
Dispatch to the specified method. |
protected ActionForward |
ActionDispatcher.dispatchMethod(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.lang.String name,
java.lang.reflect.Method method)
Dispatch to the specified method. |
ActionForward |
MappingDispatchAction.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). |
ActionForward |
ActionDispatcher.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 |
LocaleAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Change the user's Locale based on ActionForm properties. |
ActionForward |
DownloadAction.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 |
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 |
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). |
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). |
protected ActionForward |
MappingDispatchAction.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 the parameter in the ActionMapping. |
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 |
EventActionDispatcher.unspecified(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Dispatches to the target class' unspecified method, if
present, otherwise throws a ServletException. |
protected ActionForward |
ActionDispatcher.unspecified(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Dispatches to the target class' unspecified method, if
present, otherwise throws a ServletException. |
protected ActionForward |
EventDispatchAction.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. |
Uses of ActionForward in org.apache.struts.apps.mailreader.actions |
---|
Methods in org.apache.struts.apps.mailreader.actions that return ActionForward | |
---|---|
ActionForward |
SubscriptionAction.Delete(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Prepare for a Delete operation by populating the form and seting the action to Delete. |
protected ActionForward |
BaseAction.doFindFailure(ActionMapping mapping)
Return the local or global forward named "failure" or null if there is no such forward. |
protected ActionForward |
BaseAction.doFindLogon(ActionMapping mapping)
Return the local or global forward named "logon" or null if there is no such forward. |
protected ActionForward |
BaseAction.doFindSuccess(ActionMapping mapping)
Return the mapping labeled "success" or null if there is no such mapping. |
protected ActionForward |
BaseAction.doInputForward(ActionMapping mapping,
javax.servlet.http.HttpServletRequest request,
ActionMessages errors)
Save any errors and the transactioonal token, and forward to the InputForard result. |
ActionForward |
SubscriptionAction.Edit(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Retrieve the Subscription object to edit or null if the Subscription does not exist. |
ActionForward |
RegistrationAction.Edit(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Retrieve the User object to edit or null if the User does not exist, and set an transactional token to later detect multiple Save commands. |
ActionForward |
LogoffAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
ActionForward |
WelcomeAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
ActionForward |
LocaleAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Change the user's Struts Locale based on request
parameters for "language", "country". |
ActionForward |
MainMenuAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
ActionForward |
LogonAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Use "username" and "password" fields from ActionForm to retrieve a User object from the database. |
ActionForward |
SubscriptionAction.Save(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Insert or update a Subscription object to the persistent store. |
ActionForward |
RegistrationAction.Save(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Insert or update a User object to the persistent store. |
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. |
Uses of ActionForward in org.apache.struts.faces.application |
---|
Methods in org.apache.struts.faces.application that return ActionForward | |
---|---|
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 ActionForward in org.apache.struts.scripting |
---|
Methods in org.apache.struts.scripting that return ActionForward | |
---|---|
ActionForward |
ScriptAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Executes the script. |
ActionForward |
StrutsInfo.getForward()
Gets the forward object. |
Methods in org.apache.struts.scripting with parameters of type ActionForward | |
---|---|
void |
StrutsInfo.setForward(ActionForward f)
Sets the action forward object. |
Uses of ActionForward in org.apache.struts.tiles.actions |
---|
Methods in org.apache.struts.tiles.actions that return ActionForward | |
---|---|
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 |
TilesAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Original Struts Action's method. |
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 |
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 |
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. |
Uses of ActionForward in org.apache.struts.webapp.dispatch |
---|
Methods in org.apache.struts.webapp.dispatch that return ActionForward | |
---|---|
ActionForward |
LookupDispatchExampleAction.doBar(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "bar" method. |
ActionForward |
EventDispatchActionExample.doBar(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "bar" method. |
ActionForward |
DispatchExampleAction.doBar(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "bar" method. |
ActionForward |
MappingDispatchExampleAction.doBar(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "bar" method. |
ActionForward |
ActionDispatcherExample.doBar(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "bar" method. |
ActionForward |
EventActionDispatcherExample.doBar(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "bar" method. |
ActionForward |
LookupDispatchExampleAction.doFoo(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "foo" method. |
ActionForward |
EventDispatchActionExample.doFoo(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "foo" method. |
ActionForward |
DispatchExampleAction.doFoo(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "foo" method. |
ActionForward |
MappingDispatchExampleAction.doFoo(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "foo" method. |
ActionForward |
ActionDispatcherExample.doFoo(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "foo" method. |
ActionForward |
EventActionDispatcherExample.doFoo(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Example "foo" method. |
ActionForward |
ActionDispatcherExample.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Execute method. |
ActionForward |
EventActionDispatcherExample.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Execute method. |
Uses of ActionForward in org.apache.struts.webapp.el.exercise |
---|
Methods in org.apache.struts.webapp.el.exercise that return ActionForward | |
---|---|
ActionForward |
DynaSetAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
ActionForward |
HtmlSettersAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Forward to the input form if "Save" was pressed or the main menu if "Cancel" was pressed. |
Uses of ActionForward in org.apache.struts.webapp.example |
---|
Methods in org.apache.struts.webapp.example that return ActionForward | |
---|---|
ActionForward |
EditSubscriptionAction.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 |
SaveRegistrationAction.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 |
LogonAction.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 |
LogoffAction.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 |
EditRegistrationAction.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 |
SaveSubscriptionAction.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 ActionForward in org.apache.struts.webapp.example2 |
---|
Methods in org.apache.struts.webapp.example2 that return ActionForward | |
---|---|
ActionForward |
EditRegistrationAction.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 |
EditSubscriptionAction.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 |
LogoffAction.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 |
LogonAction.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 |
SaveRegistrationAction.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 |
SaveSubscriptionAction.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 ActionForward in org.apache.struts.webapp.examples |
---|
Subclasses of ActionForward in org.apache.struts.webapp.examples | |
---|---|
class |
CustomActionForward
Custom ActionForward to demonstrate usage. |
Uses of ActionForward in org.apache.struts.webapp.exercise |
---|
Methods in org.apache.struts.webapp.exercise that return ActionForward | |
---|---|
ActionForward |
SuccessAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Dispatch control to the "success" forward. |
ActionForward |
HtmlSettersAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Forward to the input form if "Save" was pressed or the main menu if "Cancel" was pressed. |
ActionForward |
ImageAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Read image from resource given as ActionMapping parameter and copy to output stream. |
Uses of ActionForward in org.apache.struts.webapp.upload |
---|
Methods in org.apache.struts.webapp.upload that return ActionForward | |
---|---|
ActionForward |
UploadAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
Uses of ActionForward in org.apache.struts.webapp.validator |
---|
Methods in org.apache.struts.webapp.validator that return ActionForward | |
---|---|
ActionForward |
MultiRegistrationAction.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 |
TypeAction.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 |
LocaleAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Change the user's Locale based on ActionForm
properties. |
ActionForward |
ShowFileAction.execute(ActionMapping mapping,
ActionForm form,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
ActionForward |
RegistrationAction.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 |
EditTypeAction.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). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |