| java.lang.Object org.apache.beehive.netui.pageflow.PageFlowManagedObject org.apache.beehive.netui.pageflow.FlowController org.apache.beehive.netui.pageflow.PageFlowController
PageFlowController | abstract public class PageFlowController extends FlowController implements InternalConstants(Code) | |
Base class for controller logic, exception handlers, and state associated with a particular web directory path.
The class is configured through the
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller annotation.
When a page flow request (the page flow URI itself, or any ".do" or page URI in the directory path), arrives, an
instance of the associated PageFlowController class is set as the current page flow, and remains stored in the
session until a different one becomes active ("long lived" page flows stay in the session indefinitely;
see
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.longLived longLived on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller ).
The page flow class handles actions that are most commonly raised by user interaction with pages. The actions
are handled by action methods or action annotations that determine the next URI to be displayed, after
optionally performing arbitrary logic.
If the PageFlowController is a "nested page flow"
(
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.nested nested is set to true
on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller ), then this
is a reusable, modular flow that can be "nested" during other flows. It has entry points (actions with optional form
bean arguments), and exit points (
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward annotations
that have returnAction attributes).
The page flow class also handles exceptions thrown by actions or during page execution
(see
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.catches catches on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller ). Unhandled exceptions are
handled in order by declared
SharedFlowController s
(see
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefs on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller ).
Properties in the current page flow instance can be accessed from JSP 2.0-style expressions like this one:
${pageFlow.someProperty} .
There may only be one page flow in any package.
See Also: SharedFlowController |
Method Summary | |
final void | beforePage() | final public synchronized void | create(HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) This is a framework method for initializing a newly-created page flow, and should not normally be called
directly. | public void | ensureFailover(HttpServletRequest request)
Ensure that any changes to this object will be replicated in a cluster (for failover), even if the
replication scheme uses a change-detection algorithm that relies on
javax.servlet.http.HttpSession.setAttribute(StringObject) to be aware of changes. | public ActionForward | exitNesting(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping, ActionForm form) | ActionForward | forwardTo(ActionForward fwd, ActionMapping mapping, PageFlowExceptionConfig exceptionConfig, String actionName, ModuleConfig altModuleConfig, ActionForm form, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) | public String | getCurrentForwardPath() Get the webapp-relative URI for the most recent page (in this page flow) shown to the user.
Note: if the current page flow does not use a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward with navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.currentPage currentPage
or navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousPage previousPage ,
then this method will always return null by default. | final protected PreviousPageInfo | getCurrentPageInfo() Get information about the most recent page (in this page flow) shown to the user.
Note: if the current page flow does not use a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward with navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.currentPage currentPage
or navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousPage previousPage ,
then this method will always return null by default. | public String | getDisplayName() Get the display name of this page flow. | public String | getModulePath() Get the Struts module path for this page flow. | final protected PreviousActionInfo | getPreviousActionInfo() Get information about the most recent action run in this page flow.
Note: if the current page flow does not use a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward with navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousAction previousAction ,
then this method will always return null by default. | protected String | getPreviousActionURI() Get the URI for the most recent action in this PageFlowController.
Note: if the current page flow does not use a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward with navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousAction previousAction ,
then this method will always return null by default. | protected ActionForm | getPreviousForm() Get the submitted form bean from the most recent action execution in this PageFlowController.
Note: if the current page flow does not contain a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward or a
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction with
navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousAction Jpf.NavigateTo.previousAction ,
then this method will always return null by default. | protected Object | getPreviousFormBean() Get the submitted form bean from the most recent action execution in this PageFlowController.
Note: if the current page flow does not contain a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward or a
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction with
navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousAction Jpf.NavigateTo.previousAction ,
then this method will always return null by default. | protected String | getPreviousForwardPath() Get the webapp-relative URI for the previous page (in this page flow) shown to the user.
The previous page is the one shown before the most recent page.
Note: if the current page flow does not use a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward with navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.currentPage currentPage
or navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousPage previousPage ,
then this method will always return null by default. | final protected PreviousPageInfo | getPreviousPageInfo() Get information about the previous page (in this page flow) shown to the user. | final public PreviousPageInfo | getPreviousPageInfoLegacy(PageFlowController curJpf, HttpServletRequest request) Get a legacy PreviousPageInfo. | public SharedFlowController | getSharedFlow(String sharedFlowName) Get a shared flow, based on its name as defined in this page flow's
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefs attribute on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller .
To retrieve any shared flow based on its class name, use
PageFlowUtils.getSharedFlow .
Parameters: sharedFlowName - the name of the shared flow, as in this page flows'sorg.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefsattribute on the org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controllerannotation. | protected Map | getSharedFlows() Get the a map of shared flow name to shared flow instance. | protected String | getTaxonomy() Get the "resource taxonomy": a period-separated list that starts with the current
web application name, continues through all of this PageFlowController's parent directories,
and ends with this PageFlowController's class name. | public String | getURI() Get the URI for addressing this PageFlowController. | protected ActionForward | internalExecute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) | protected boolean | isLongLived() Tell whether this is a "long lived" page flow. | protected boolean | isNestable() Tell whether this PageFlowController can be "nested", i.e., if it can be invoked from another page
flow with the intention of returning to the original one. | public boolean | isPageFlow() Tell whether this is a PageFlowController. | public boolean | isPreviousActionInfoDisabled() | public boolean | isPreviousPageInfoDisabled() | protected void | onExitNesting() Callback that is invoked when this controller instance is exiting nesting through a return action. | public void | persistInSession(HttpServletRequest request, HttpServletResponse response) Store this object in the user session, in the appropriate place. | public synchronized void | removeFromSession(HttpServletRequest request) Remove this instance from the session. | public void | removeSharedFlow(String sharedFlowName) Remove a shared flow from the session, based on its name as defined in this page flow's
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefs attribute on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller . | void | savePreviousActionInfo(ActionForm form, HttpServletRequest request, ActionMapping mapping, ServletContext servletContext) Called from
FlowController.execute . | public void | savePreviousPageInfo(ActionForward forward, ActionForm form, ActionMapping mapping, HttpServletRequest request, ServletContext servletContext, boolean isSpecialForward) Store information about recent pages displayed. | void | setIsOnNestingStack(boolean isOnNestingStack) | final public PreviousPageInfo | theCurrentPageInfo() This is a non-property public accessor that will return the property value currrentPageInfo . | final public PreviousActionInfo | thePreviousActionInfo() This is a non-property public accessor that will return the property value previousActionInfo . | final public PreviousPageInfo | thePreviousPageInfo() This is a non-property public accessor that will return the property value previousPageInfo . | final public Map | theSharedFlows() This is a non-property public accessor that will return the property value sharedFlows . | public void | valueUnbound(HttpSessionBindingEvent event) Callback when this object is removed from the user session. |
PageFlowController | protected PageFlowController()(Code) | | Default constructor.
|
beforePage | final void beforePage()(Code) | | |
ensureFailover | public void ensureFailover(HttpServletRequest request)(Code) | |
Ensure that any changes to this object will be replicated in a cluster (for failover), even if the
replication scheme uses a change-detection algorithm that relies on
javax.servlet.http.HttpSession.setAttribute(StringObject) to be aware of changes. This method is
used by the framework and should not be called directly in most cases.
Note, this method ultimately causes the Page Flow to be persisted in the
StorageHandler for this web application.
Parameters: request - the current HttpServletRequest |
getDisplayName | public String getDisplayName()(Code) | | Get the display name of this page flow.
the display name (the URI) of this page flow. |
getModulePath | public String getModulePath()(Code) | | Get the Struts module path for this page flow.
a String that is the Struts module path for this controller, and which is alsothe directory path from the web application root to this PageFlowController(not including the action filename). |
getPreviousForwardPath | protected String getPreviousForwardPath()(Code) | | Get the webapp-relative URI for the previous page (in this page flow) shown to the user.
The previous page is the one shown before the most recent page.
Note: if the current page flow does not use a
org.apache.beehive.netui.pageflow.annotations.Jpf.Forward @Jpf.Forward ,
org.apache.beehive.netui.pageflow.annotations.Jpf.SimpleAction @Jpf.SimpleAction , or
org.apache.beehive.netui.pageflow.annotations.Jpf.ConditionalForward @Jpf.ConditionalForward with navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.currentPage currentPage
or navigateTo=
org.apache.beehive.netui.pageflow.annotations.Jpf.NavigateTo.previousPage previousPage ,
then this method will always return null by default. To enable it in this situation, add the
following method to the page flow:
protected boolean alwaysTrackPreviousPage()
{
return true;
}
a String that is the URI path for the previous page shown to the user. See Also: PageFlowController.getPreviousPageInfo See Also: PageFlowController.getCurrentPageInfo See Also: PageFlowController.getPreviousActionInfo See Also: PageFlowController.getPreviousActionURI See Also: PageFlowController.getPreviousFormBean See Also: PageFlowController.getCurrentForwardPath |
getSharedFlow | public SharedFlowController getSharedFlow(String sharedFlowName)(Code) | | Get a shared flow, based on its name as defined in this page flow's
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefs attribute on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller .
To retrieve any shared flow based on its class name, use
PageFlowUtils.getSharedFlow .
Parameters: sharedFlowName - the name of the shared flow, as in this page flows'sorg.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefsattribute on the org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controllerannotation. the SharedFlowController with the given name. |
getSharedFlows | protected Map getSharedFlows()(Code) | | Get the a map of shared flow name to shared flow instance.
a Map of shared flow name (string) to shared flow instance (SharedFlowController). |
getTaxonomy | protected String getTaxonomy()(Code) | | Get the "resource taxonomy": a period-separated list that starts with the current
web application name, continues through all of this PageFlowController's parent directories,
and ends with this PageFlowController's class name.
|
getURI | public String getURI()(Code) | | Get the URI for addressing this PageFlowController.
a String that is the URI which will execute the begin action on thisPageFlowController. |
isLongLived | protected boolean isLongLived()(Code) | | Tell whether this is a "long lived" page flow. Once it is invoked, a long lived page flow is never
removed from the session unless
PageFlowController.remove is called. Navigating to another page flow hides
the current long lived controller, but does not remove it.
|
isNestable | protected boolean isNestable()(Code) | | Tell whether this PageFlowController can be "nested", i.e., if it can be invoked from another page
flow with the intention of returning to the original one. Page flows are declared to be nested by specifying
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.nested nested =true on the
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller annotation.
true if this PageFlowController can be nested. |
isPageFlow | public boolean isPageFlow()(Code) | | Tell whether this is a PageFlowController.
true . |
isPreviousActionInfoDisabled | public boolean isPreviousActionInfoDisabled()(Code) | | |
isPreviousPageInfoDisabled | public boolean isPreviousPageInfoDisabled()(Code) | | |
persistInSession | public void persistInSession(HttpServletRequest request, HttpServletResponse response)(Code) | | Store this object in the user session, in the appropriate place. Used by the framework; normally should not be
called directly.
|
removeSharedFlow | public void removeSharedFlow(String sharedFlowName)(Code) | | Remove a shared flow from the session, based on its name as defined in this page flow's
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefs attribute on
org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controller .
To remove any shared flow based on its class name, use
PageFlowUtils.removeSharedFlow .
Parameters: sharedFlowName - the name of the shared flow, as in this page flows'sorg.apache.beehive.netui.pageflow.annotations.Jpf.Controller.sharedFlowRefs sharedFlowRefsattribute on the org.apache.beehive.netui.pageflow.annotations.Jpf.Controller @Jpf.Controllerannotation. |
savePreviousPageInfo | public void savePreviousPageInfo(ActionForward forward, ActionForm form, ActionMapping mapping, HttpServletRequest request, ServletContext servletContext, boolean isSpecialForward)(Code) | | Store information about recent pages displayed. This is a framework-invoked method that should not normally be
called directly.
|
setIsOnNestingStack | void setIsOnNestingStack(boolean isOnNestingStack)(Code) | | |
theCurrentPageInfo | final public PreviousPageInfo theCurrentPageInfo()(Code) | | This is a non-property public accessor that will return the property value currrentPageInfo .
This is a non-property method because properties are exposed to databinding and that would expose
internal data structures to attack.
a PreviousPageInfo with information about the most recent page shown to the user. |
thePreviousActionInfo | final public PreviousActionInfo thePreviousActionInfo()(Code) | | This is a non-property public accessor that will return the property value previousActionInfo .
This is a non-property method because properties are exposed to databinding and that would expose
internal data structures to attack.
a PreviousActionInfo with information about the most recent action run in this page flow. |
thePreviousPageInfo | final public PreviousPageInfo thePreviousPageInfo()(Code) | | This is a non-property public accessor that will return the property value previousPageInfo .
This is a non-property method because properties are exposed to databinding and that would expose
internal data structures to attack.
a PreviousPageInfo with information about the previous page shown to the user. |
theSharedFlows | final public Map theSharedFlows()(Code) | | This is a non-property public accessor that will return the property value sharedFlows .
This is a non-property method because properties are exposed to databinding and that would expose
internal data structures to attack.
a Map of shared flow name (string) to shared flow instance (SharedFlowController). |
Fields inherited from org.apache.beehive.netui.pageflow.FlowController | protected static Locale defaultLocale(Code)(Java Doc)
|
Methods inherited from org.apache.beehive.netui.pageflow.FlowController | protected void addActionError(String propertyName, String messageKey, Object[] messageArgs)(Code)(Java Doc) protected void addActionErrorExpression(String propertyName, String expression, Object[] messageArgs)(Code)(Java Doc) protected void addValidationError(String propertyName, String messageKey, Object[] messageArgs)(Code)(Java Doc) protected void addValidationError(String propertyName, String messageKey)(Code)(Java Doc) protected synchronized void afterAction() throws Exception(Code)(Java Doc) protected boolean alwaysTrackPreviousAction()(Code)(Java Doc) protected boolean alwaysTrackPreviousPage()(Code)(Java Doc) protected synchronized void beforeAction() throws Exception(Code)(Java Doc) public synchronized void create(HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)(Code)(Java Doc) NotLoggedInException createNotLoggedInException(String actionName, HttpServletRequest request)(Code)(Java Doc) void decrementRequestCount(HttpServletRequest request)(Code)(Java Doc) void destroy(HttpSession session)(Code)(Java Doc) public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception(Code)(Java Doc) ActionForward forwardTo(ActionForward fwd, ActionMapping mapping, PageFlowExceptionConfig exceptionConfig, String actionName, ModuleConfig altModuleConfig, ActionForm form, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)(Code)(Java Doc) protected String generateToken(HttpServletRequest request)(Code)(Java Doc) protected String generateToken()(Code)(Java Doc) final protected ActionMapping getActionMapping()(Code)(Java Doc) protected Method getActionMethod(String methodName, Class argType)(Code)(Java Doc) ActionForward getActionMethodForward(String actionName, Object inputForm, HttpServletRequest request, HttpServletResponse response, ActionMapping mapping) throws Exception(Code)(Java Doc) public MutableURI getActionURI(String actionName) throws URISyntaxException(Code)(Java Doc) protected String[] getActions()(Code)(Java Doc) protected String getCurrentActionName()(Code)(Java Doc) protected DataSource getDataSource(HttpServletRequest request)(Code)(Java Doc) protected DataSource getDataSource(HttpServletRequest request, String key)(Code)(Java Doc) protected static Locale getDefaultLocale()(Code)(Java Doc) public ActionForm getFormBean(ActionMapping mapping)(Code)(Java Doc) FlowControllerHandlerContext getHandlerContext()(Code)(Java Doc) protected Locale getLocale(HttpServletRequest request)(Code)(Java Doc) protected Locale getLocale()(Code)(Java Doc) final protected ActionMapping getMapping()(Code)(Java Doc) protected MessageResources getMessageResources()(Code)(Java Doc) protected MessageResources getMessageResources(String key)(Code)(Java Doc) final protected ModuleConfig getModuleConfig()(Code)(Java Doc) public ModuleConfig getModuleConfig(ServletContext servletContext, HttpServletRequest request)(Code)(Java Doc) abstract public String getModulePath()(Code)(Java Doc) abstract public PreviousPageInfo getPreviousPageInfoLegacy(PageFlowController curJpf, HttpServletRequest request)(Code)(Java Doc) final protected HttpServletRequest getRequest()(Code)(Java Doc) PageFlowRequestProcessor getRequestProcessor()(Code)(Java Doc) protected MessageResources getResources()(Code)(Java Doc) protected MessageResources getResources(HttpServletRequest request)(Code)(Java Doc) protected MessageResources getResources(HttpServletRequest request, String key)(Code)(Java Doc) final protected HttpServletResponse getResponse()(Code)(Java Doc) public String getRewrittenActionURI(String actionName, Map parameters, boolean asValidXml) throws URISyntaxException(Code)(Java Doc) protected ActionServlet getServlet()(Code)(Java Doc) final protected HttpSession getSession()(Code)(Java Doc) public Principal getUserPrincipal()(Code)(Java Doc) public synchronized ActionForward handleException(Throwable ex, ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException(Code)(Java Doc) boolean incrementRequestCount(HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) throws IOException(Code)(Java Doc) protected ActionForward internalExecute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception(Code)(Java Doc) protected ActionForward invokeActionMethod(Method method, Object arg) throws Exception(Code)(Java Doc) ActionForward invokeActionMethod(Method method, Object arg, HttpServletRequest request, ActionMapping mapping) throws Exception(Code)(Java Doc) public synchronized ActionForward invokeExceptionHandler(Method method, Throwable ex, String message, ActionForm wrappedFormBean, PageFlowExceptionConfig exceptionConfig, ActionMapping actionMapping, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException(Code)(Java Doc) public boolean isAction(String name)(Code)(Java Doc) protected boolean isCancelled(HttpServletRequest request)(Code)(Java Doc) public boolean isPageFlow()(Code)(Java Doc) protected boolean isTokenValid(HttpServletRequest request)(Code)(Java Doc) protected boolean isTokenValid()(Code)(Java Doc) protected boolean isTokenValid(HttpServletRequest request, boolean reset)(Code)(Java Doc) protected boolean isTokenValid(boolean reset)(Code)(Java Doc) public boolean isUserInRole(String roleName)(Code)(Java Doc) public void login(String username, String password) throws LoginException(Code)(Java Doc) public void logout(boolean invalidateSessions)(Code)(Java Doc) public static ActionResult lookup(String actionName, ServletContext context, HttpServletRequest request, HttpServletResponse response) throws Exception(Code)(Java Doc) public static ActionResult lookup(String actionName, ServletContext context, HttpServletRequest request, HttpServletResponse response, String actionServletClassName) throws Exception(Code)(Java Doc) protected void onCreate() throws Exception(Code)(Java Doc) protected void onDestroy()(Code)(Java Doc) protected void onDestroy(HttpSession session)(Code)(Java Doc) protected void onRefresh()(Code)(Java Doc) final public synchronized void refresh(HttpServletRequest request, HttpServletResponse response)(Code)(Java Doc) public void reinitialize(HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)(Code)(Java Doc) protected void remove()(Code)(Java Doc) protected void resetToken(HttpServletRequest request)(Code)(Java Doc) protected void resetToken()(Code)(Java Doc) public String resolveAction(String actionName, Object form, HttpServletRequest request, HttpServletResponse response) throws Exception(Code)(Java Doc) public String resolveAction(String actionName, Object form) throws Exception(Code)(Java Doc) public static Locale retrieveUserLocale(HttpServletRequest request, String locale)(Code)(Java Doc) protected void saveActionErrors(ActionMessages errors)(Code)(Java Doc) protected void saveErrors(HttpServletRequest request, ActionMessages errors)(Code)(Java Doc) protected void saveMessages(HttpServletRequest request, ActionMessages messages)(Code)(Java Doc) void savePreviousActionInfo(ActionForm form, HttpServletRequest request, ActionMapping mapping, ServletContext servletContext)(Code)(Java Doc) public void savePreviousPageInfo(ActionForward forward, ActionForm form, ActionMapping mapping, HttpServletRequest request, ServletContext servletContext, boolean isSpecialForward)(Code)(Java Doc) protected void saveToken(HttpServletRequest request)(Code)(Java Doc) protected void sendError(String errText, HttpServletResponse response) throws IOException(Code)(Java Doc) protected void sendError(String errText, HttpServletRequest request, HttpServletResponse response) throws IOException(Code)(Java Doc) protected void setLocale(HttpServletRequest request, Locale locale)(Code)(Java Doc) protected void setLocale(Locale locale)(Code)(Java Doc) PerRequestState setPerRequestState(PerRequestState state)(Code)(Java Doc) final public ModuleConfig theModuleConfig()(Code)(Java Doc)
|
|
|