|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ForwardConfig | |
---|---|
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.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.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.config.impl | Provides default implementation classes for the configuration objects. |
org.apache.struts.faces.application | |
org.apache.struts.tiles |
The Tiles taglib and framework allows building web pages by assembling reusable
pieces of pages, called Tiles. |
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. |
Uses of ForwardConfig in org.apache.struts.action |
---|
Subclasses of ForwardConfig in org.apache.struts.action | |
---|---|
class |
ActionForward
An ActionForward represents a destination to which the controller, RequestProcessor, might be directed to perform a RequestDispatcher.forward or HttpServletResponse.sendRedirect to, as a result of processing activities of an Action class. |
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 ForwardConfig | |
---|---|
protected ForwardConfig |
ActionServlet.processForwardConfigClass(ForwardConfig forwardConfig,
ModuleConfig moduleConfig,
ActionConfig actionConfig)
Checks if the current forwardConfig is using the correct class based on the class of its configuration ancestor. |
Methods in org.apache.struts.action with parameters of type ForwardConfig | |
---|---|
protected void |
RequestProcessor.processForwardConfig(HttpServletRequest request,
HttpServletResponse response,
ForwardConfig forward)
Forward or redirect to the specified destination, by the specified mechanism. |
protected ForwardConfig |
ActionServlet.processForwardConfigClass(ForwardConfig forwardConfig,
ModuleConfig moduleConfig,
ActionConfig actionConfig)
Checks if the current forwardConfig is using the correct class based on the class of its configuration ancestor. |
protected void |
ActionServlet.processForwardExtension(ForwardConfig forwardConfig,
ModuleConfig moduleConfig,
ActionConfig actionConfig)
Extend the forward's configuration as necessary. |
Constructors in org.apache.struts.action with parameters of type ForwardConfig | |
---|---|
ActionRedirect(ForwardConfig baseConfig)
Construct a new instance with a ForwardConfig object to copy
name, path, contextRelative, and arbitrary property values from. |
Uses of ForwardConfig in org.apache.struts.chain.commands |
---|
Methods in org.apache.struts.chain.commands that return ForwardConfig | |
---|---|
protected abstract ForwardConfig |
AbstractExecuteAction.execute(ActionContext context,
Action action,
ActionConfig actionConfig,
ActionForm actionForm)
Execute the specified Action , and return the resulting
ForwardConfig . |
protected abstract ForwardConfig |
AbstractSelectInput.forward(ActionContext context,
ModuleConfig moduleConfig,
String uri)
Create and return a ForwardConfig representing the
specified module-relative destination. |
protected abstract ForwardConfig |
AbstractSelectForward.forward(ActionContext context,
ModuleConfig moduleConfig,
String uri)
Create and return a ForwardConfig representing the
specified module-relative destination. |
protected abstract ForwardConfig |
AbstractExceptionHandler.handle(ActionContext context,
Exception exception,
ExceptionConfig exceptionConfig,
ActionConfig actionConfig,
ModuleConfig moduleConfig)
Perform the required handling of the specified exception. |
Methods in org.apache.struts.chain.commands with parameters of type ForwardConfig | |
---|---|
protected abstract void |
AbstractPerformForward.perform(ActionContext context,
ForwardConfig forwardConfig)
Perform the appropriate processing on the specified ForwardConfig . |
Uses of ForwardConfig in org.apache.struts.chain.commands.servlet |
---|
Methods in org.apache.struts.chain.commands.servlet that return ForwardConfig | |
---|---|
protected ForwardConfig |
ExecuteAction.execute(ActionContext context,
Action action,
ActionConfig actionConfig,
ActionForm actionForm)
Execute the specified Action , and return the resulting
ActionForward . |
protected ForwardConfig |
SelectInput.forward(ActionContext context,
ModuleConfig moduleConfig,
String uri)
Create and return a ForwardConfig representing the
specified module-relative destination. |
protected ForwardConfig |
SelectForward.forward(ActionContext context,
ModuleConfig moduleConfig,
String uri)
Create and return a ForwardConfig representing the
specified module-relative destination. |
protected ForwardConfig |
ExceptionHandler.handle(ActionContext context,
Exception exception,
ExceptionConfig exceptionConfig,
ActionConfig actionConfig,
ModuleConfig moduleConfig)
|
Methods in org.apache.struts.chain.commands.servlet with parameters of type ForwardConfig | |
---|---|
protected void |
PerformForward.perform(ActionContext context,
ForwardConfig forwardConfig)
Perform the appropriate processing on the specified ForwardConfig . |
Uses of ForwardConfig in org.apache.struts.chain.contexts |
---|
Methods in org.apache.struts.chain.contexts that return ForwardConfig | |
---|---|
ForwardConfig |
ActionContextBase.getForwardConfig()
|
ForwardConfig |
ActionContext.getForwardConfig()
Get the ForwardConfig which has been identified as the basis for view-processing. |
Methods in org.apache.struts.chain.contexts with parameters of type ForwardConfig | |
---|---|
void |
ActionContextBase.setForwardConfig(ForwardConfig forward)
|
void |
ActionContext.setForwardConfig(ForwardConfig forward)
Set the ForwardConfig which should be used as the basis of the view segment of the overall processing. |
Uses of ForwardConfig in org.apache.struts.config |
---|
Methods in org.apache.struts.config that return ForwardConfig | |
---|---|
ForwardConfig |
ModuleConfig.findForwardConfig(String name)
Return the forward configuration for the specified key, if any; otherwise return null . |
ForwardConfig |
ActionConfig.findForwardConfig(String name)
Return the forward configuration for the specified key, if any; otherwise return null . |
ForwardConfig[] |
ModuleConfig.findForwardConfigs()
Return the form bean configurations for this module. |
ForwardConfig[] |
ActionConfig.findForwardConfigs()
Return all forward configurations for this module. |
Methods in org.apache.struts.config with parameters of type ForwardConfig | |
---|---|
void |
ModuleConfig.addForwardConfig(ForwardConfig config)
Add a new ForwardConfig instance to the set of global
forwards associated with this module. |
void |
ActionConfig.addForwardConfig(ForwardConfig config)
Add a new ForwardConfig instance to the set of global
forwards associated with this action. |
void |
ForwardConfig.inheritFrom(ForwardConfig config)
Inherit values that have not been overridden from the provided config object. |
void |
ModuleConfig.removeForwardConfig(ForwardConfig config)
Remove the specified forward configuration instance. |
void |
ActionConfig.removeForwardConfig(ForwardConfig config)
Remove the specified forward configuration instance. |
Constructors in org.apache.struts.config with parameters of type ForwardConfig | |
---|---|
ForwardConfig(ForwardConfig copyMe)
Construct a new instance based on the values of another ForwardConfig. |
Uses of ForwardConfig in org.apache.struts.config.impl |
---|
Methods in org.apache.struts.config.impl that return ForwardConfig | |
---|---|
ForwardConfig |
ModuleConfigImpl.findForwardConfig(String name)
Return the forward configuration for the specified key, if any; otherwise return null . |
ForwardConfig[] |
ModuleConfigImpl.findForwardConfigs()
Return the form bean configurations for this module. |
Methods in org.apache.struts.config.impl with parameters of type ForwardConfig | |
---|---|
void |
ModuleConfigImpl.addForwardConfig(ForwardConfig config)
Add a new ForwardConfig instance to the set of global
forwards associated with this module. |
void |
ModuleConfigImpl.removeForwardConfig(ForwardConfig config)
Remove the specified forward configuration instance. |
Uses of ForwardConfig in org.apache.struts.faces.application |
---|
Methods in org.apache.struts.faces.application with parameters of type ForwardConfig | |
---|---|
protected void |
FacesTilesRequestProcessor.processForwardConfig(HttpServletRequest request,
HttpServletResponse response,
ForwardConfig forward)
|
protected void |
FacesRequestProcessor.processForwardConfig(HttpServletRequest request,
HttpServletResponse response,
ForwardConfig forward)
|
Uses of ForwardConfig in org.apache.struts.tiles |
---|
Methods in org.apache.struts.tiles with parameters of type ForwardConfig | |
---|---|
protected void |
TilesRequestProcessor.processForwardConfig(HttpServletRequest request,
HttpServletResponse response,
ForwardConfig forward)
Overloaded method from Struts' RequestProcessor. |
Uses of ForwardConfig in org.apache.struts.util |
---|
Methods in org.apache.struts.util with parameters of type ForwardConfig | |
---|---|
static String |
RequestUtils.actionIdURL(ForwardConfig forward,
HttpServletRequest request,
ActionServlet servlet)
Returns the true path of the destination action if the specified forward is an action-aliased URL. |
static String |
RequestUtils.forwardURL(HttpServletRequest request,
ForwardConfig forward)
Return the context-relative URL that corresponds to the specified ForwardConfig . |
static String |
RequestUtils.forwardURL(HttpServletRequest request,
ForwardConfig forward,
ModuleConfig moduleConfig)
Return the context-relative URL that corresponds to the specified ForwardConfig . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |