| de.schlund.pfixxml.config.PageFlowConfig
All known Subclasses: de.schlund.pfixxml.config.impl.PageFlowConfigImpl,
PageFlowConfig | public interface PageFlowConfig (Code) | | Provides configuration for a page flow.
author: Sebastian Marsching |
getFinalPage | String getFinalPage()(Code) | | Returns name of the final page of the page flow. The final page is the
page that the flow will jump to, when the flow has been processed (no
page of the flow needs input).
the name of the final page or null if no finalpage is defined |
getFlowName | String getFlowName()(Code) | | Returns name of the page flow. The name is used to uniquely identify
a pageflow in a servlet configuration.
name of the page flow |
getFlowSteps | List<? extends PageFlowStepConfig> getFlowSteps()(Code) | | Returns a list of configurations for each flow step.
configurations of the flow steps |
isStopNext | boolean isStopNext()(Code) | | If true , will force the page flow to stop at each page,
even if it does not require input.
flag indicating whether to always stop at the next page aftera submit |
|
|