Interface PageFlowControl

All Known Implementing Classes:
DefaultHstPageFlowControl, DefaultPageFlowControl

public interface PageFlowControl
Page Flow Control abstraction, which provides applications with an easier way to retrieve the current PageFlow instance from the HttpServletRequest, to send redirection to a specific PageState and to complete a PageFlow.

For example, an application can use this interface like the following example:

 final PageFlowControl flowControl = PageFlowControl.getDefault(request);
 final PageFlow pageFlow = flowControl.getPageFlow(request);
 ...