Stack for keeping track of a series of nested page flows. When a nested page flow is entered,
the previous page flow is pushed onto this stack, which is kept in the user session.
findActionInStack(String actionPath) Internal (to our framework) method for seeing whether a given action exists in a page flow that is somewhere in
the stack.
get(HttpServletRequest request, ServletContext servletContext, boolean createIfNotExist) Get the stack of nested page flows for the current user session.
Internal (to our framework) method for seeing whether a given action exists in a page flow that is somewhere in
the stack. If so, the page flow's ModuleConfig is returned.
Get the stack of nested page flows for the current user session. Create and store an empty
stack if none exists.
Parameters: request - the current HttpServletRequest. Parameters: servletContext - the current ServletContext. the stack of nested page flows PushedPageFlows) for the current user session.
Get the stack of nested page flows for the current user session. Create and store an empty
stack if none exists.
PageFlowStack.get(HttpServletRequest,ServletContext) Parameters: request - the current HttpServletRequest. the stack of nested page flows PushedPageFlows) for the current user session.
Get the stack of nested page flows for the current user session. Create and store an empty
stack if none exists.
Parameters: request - the current HttpServletRequest. Parameters: servletContext - the current ServletContext. a PageFlowStack of nested page flows (PageFlowControllers) for the current user session.
Get the most recently-pushed page flow from the stack of nested page flows in the session.
a PushedPageFlow that represents the page flow at the top of the stack.
Pop the most recently-pushed page flow from the stack of nested page flows in the session.
Parameters: request - the current HttpServletRequest. a PushedPageFlow that represents the popped page flow.
Pop page flows from the nesting stack until one of the given type is found.
the last popped page flow if one of the given type was found, or nullif none was found.
Push a page flow onto the stack of nested page flows in the session.
Parameters: pageFlow - the page flow to push. Parameters: request - the current HttpServletRequest.