|
|||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |
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.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 | |
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 servlet, ActionServlet , might be directed to
perform a RequestDispatcher.forward() or
HttpServletResponse.sendRedirect() to, as a result of
processing activities of an Action class. |
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 with parameters of type ForwardConfig | |
protected void |
RequestProcessor.processForwardConfig(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
ForwardConfig forward)
Forward or redirect to the specified destination, by the specified mechanism. |
Uses of ForwardConfig in org.apache.struts.config |
Methods in org.apache.struts.config that return ForwardConfig | |
ForwardConfig |
ModuleConfig.findForwardConfig(java.lang.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.findForwardConfig(java.lang.String name)
Return the forward configuration for the specified key, if any; otherwise return null . |
ForwardConfig[] |
ActionConfig.findForwardConfigs()
Return the form bean configurations for this application. |
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 |
ModuleConfig.removeForwardConfig(ForwardConfig config)
Remove the specified forward configuration instance. |
void |
ActionConfig.addForwardConfig(ForwardConfig config)
Add a new ForwardConfig instance to the set of global
forwards associated with this action. |
void |
ActionConfig.removeForwardConfig(ForwardConfig config)
Remove the specified forward configuration instance. |
Uses of ForwardConfig in org.apache.struts.config.impl |
Methods in org.apache.struts.config.impl that return ForwardConfig | |
ForwardConfig |
ModuleConfigImpl.findForwardConfig(java.lang.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.tiles |
Methods in org.apache.struts.tiles with parameters of type ForwardConfig | |
protected void |
TilesRequestProcessor.processForwardConfig(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.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 java.lang.String |
RequestUtils.forwardURL(javax.servlet.http.HttpServletRequest request,
ForwardConfig forward)
Return the context-relative URL that corresponds to the specified ForwardConfig. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |