Spring Web Flow

Package org.springframework.faces.webflow

The integration layer between Spring Web Flow and Java Server Faces (JSF).

See:
          Description

Class Summary
FacesContextHelper Provides helper methods for getting a FacesContext that is suitable for use outside of Web Flow.
FacesSpringELExpressionParser A Spring EL ExpressionParser for use with JSF.
FlowActionListener The default ActionListener implementation to be used with Web Flow.
FlowApplication Wraps an Application instance in order to ensure Web Flow specific implementations of ViewHandler and StateManager are inserted at the front of the processing chain in JSF 1.2 and JSF 2.0 environments.
FlowApplicationFactory Custom ApplicationFactory that ensures the FlowApplication is the first Application in the chain, which in turn guarantees the install order for other JSF components.
FlowFacesContext Custom FacesContext implementation that delegates all standard FacesContext messaging functionality to a Spring MessageSource made accessible as part of the current Web Flow request.
FlowFacesContextLifecycleListener A FlowExecutionListener that creates a FlowFacesContext instance when a flow request is submitted and releases it when the request has been processed.
FlowFacesContextMessageDelegate Helper delegate class for use with the FlowFacesContext that handles all faces message methods.
FlowLifecycle Custom Lifecycle for Spring Web Flow that only executes the APPLY_REQUEST_VALUES through INVOKE_APPLICATION phases.
FlowPartialViewContext Web Flow PartialViewContext implementation allowing ids for partial rendering to be specified from the server-side.
FlowPropertyResolver Custom property resolver for resolving properties on web flow specific structures with JSF 1.1 or > by delegating to web flow's EL resolvers.
FlowRenderKit  
FlowResourceResolver Resolves Facelets templates using Spring Resource paths such as "classpath:foo.xhtml".
FlowSerializedView Serialized UIViewRoot stored in view scope associated with a Web Flow View State.
FlowVariableResolver Custom variabe resolver for resolving properties on web flow specific variables with JSF 1.1 or > by delegating to web flow's EL resolvers.
FlowViewHandler Simple delegating ViewHandler implementation that provides JSF Form's with the correct FlowExecution URL, including the current FlowExecutionKey, so that postbacks may be properly intercepted and handled by Web Flow.
FlowViewResponseStateManager A custom ResponseStateManager that writes JSF state to a Web Flow managed view-scoped variable.
FlowViewStateManager Custom StateManager that manages the JSF component state in web flow's view scope.
Jsf2FlowApplication Extends FlowApplication in order to provide JSF 2 delegation method.
Jsf2FlowFacesContext Extends FlowFacesContext in order to provide JSF 2 delegation method.
Jsf2FlowResourceResolver Resolves Facelets templates using Spring Resource paths such as "classpath:foo.xhtml".
Jsf2FlowViewHandler Extends FlowViewHandler in order to provide JSF 2 delegation method.
JsfAjaxHandler Ajax handler for JSF 2 requests that can identify JSF 2 Ajax requests and send redirect instructions back to the client by including a redirect instruction in the content of the response.
JsfFlowHandlerAdapter An extension of FlowHandlerAdapter that replaces the default AjaxHandler instance with a JsfAjaxHandler assuming JSF 2 is the runtime environment.
JsfManagedBeanAwareELExpressionParser A JSF-specific ExpressionParser that allows beans managed by either JSF, Spring, or Web Flow to be referenced in expressions in the FlowDefinition.
JsfManagedBeanPropertyAccessor Spring EL PropertyAccessor that checks request, session, and application scopes for existing JSF-managed beans.
JsfManagedBeanResolver ELResolver that checks request, session, and application scopes for existing JSF-managed beans.
JsfResourceRequestHandler Handles a request by delegating to the JSF ResourceHandler, which serves web application and classpath resources such as images, CSS and JavaScript files from well-known locations.
JsfRuntimeInformation Helper class to provide information about the JSF runtime environment such as JSF version and implementation.
JsfUtils Common support for the JSF integration with Spring Web Flow.
JsfView JSF-specific View implementation.
JsfViewFactory JSF-specific ViewFactory implementation.
JsfViewFactoryCreator A ViewFactoryCreator implementation for creating instances of a JSF-specific ViewFactory.
SpringBeanWebFlowVariableResolver JSF 1.1 VariableResolver that delegates to the flow's local Spring bean factory (for resolving Spring beans) and then to the original resolver of the underlying JSF implementation (for resolving managed-bean objects as defined in faces-config.xml as well as well-known implicit EL attributes).
 

Package org.springframework.faces.webflow Description

The integration layer between Spring Web Flow and Java Server Faces (JSF).


Spring Web Flow