The Flow Builder subsystem, for building and assembling flow definitions.

You construct a Flow using a {@link org.springframework.webflow.builder.FlowBuilder}. This package defines the following flow builder implementations:

During flow construction, a flow builder may need to access externally managed flow artifacts referenced by the flow definition. The @{link org.springframework.webflow.builder.FlowArtifactFactory} fulfills this need, acting as a facade or gateway to an external registry of flow artifacts (such as a Spring Bean Factory).

To direct flow construction, use the {@link org.springframework.webflow.builder.FlowAssembler}. This package is based on the classic GoF Builder design pattern.

This package depends on the webflow, webflow.support, and webflow.action packages.