|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ViewSelector | |
---|---|
org.springframework.webflow.engine | The implementation of the core flow definition artifacts that serve the basis of the flow execution engine. |
org.springframework.webflow.engine.builder | The flow builder subsystem for building and assembling executable flow definitions. |
org.springframework.webflow.engine.support | Support implementations for internal engine-specific types. |
Uses of ViewSelector in org.springframework.webflow.engine |
---|
Classes in org.springframework.webflow.engine that implement ViewSelector | |
---|---|
class |
NullViewSelector
Makes a null view selection, indicating no response should be issued. |
Fields in org.springframework.webflow.engine declared as ViewSelector | |
---|---|
static ViewSelector |
NullViewSelector.INSTANCE
The shared singleton NullViewSelector instance. |
Methods in org.springframework.webflow.engine that return ViewSelector | |
---|---|
ViewSelector |
EndState.getViewSelector()
Returns the strategy used to select the view to render in this end state if it terminates a root flow. |
ViewSelector |
ViewState.getViewSelector()
Returns the strategy used to select the view to render in this view state. |
Methods in org.springframework.webflow.engine with parameters of type ViewSelector | |
---|---|
void |
EndState.setViewSelector(ViewSelector viewSelector)
Sets the strategy used to select the view to render when this end state is entered and terminates a root flow. |
void |
ViewState.setViewSelector(ViewSelector viewSelector)
Sets the strategy used to select the view to render in this view state. |
Uses of ViewSelector in org.springframework.webflow.engine.builder |
---|
Methods in org.springframework.webflow.engine.builder that return ViewSelector | |
---|---|
protected ViewSelector |
TextToViewSelector.convertEncodedViewSelector(java.lang.String encodedView)
Convert given encoded view into an appropriate view selector. |
ViewSelector |
FlowServiceLocator.getViewSelector(java.lang.String id)
Returns the view selector to make view selections in view states with the provided id. |
ViewSelector |
BaseFlowServiceLocator.getViewSelector(java.lang.String id)
|
ViewSelector |
AbstractFlowBuilder.viewSelector(java.lang.String viewName)
Factory method that creates a view selector from an encoded view name. |
Methods in org.springframework.webflow.engine.builder with parameters of type ViewSelector | |
---|---|
protected State |
AbstractFlowBuilder.addEndState(java.lang.String stateId,
Action[] entryActions,
ViewSelector viewSelector,
org.springframework.binding.mapping.AttributeMapper outputMapper,
FlowExecutionExceptionHandler[] exceptionHandlers,
AttributeMap attributes)
Adds an end state to the flow built by this builder. |
protected State |
AbstractFlowBuilder.addViewState(java.lang.String stateId,
Action[] entryActions,
ViewSelector viewSelector,
Action[] renderActions,
Transition[] transitions,
FlowExecutionExceptionHandler[] exceptionHandlers,
Action[] exitActions,
AttributeMap attributes)
Adds a view state to the flow built by this builder. |
State |
FlowArtifactFactory.createEndState(java.lang.String id,
Flow flow,
Action[] entryActions,
ViewSelector viewSelector,
org.springframework.binding.mapping.AttributeMapper outputMapper,
FlowExecutionExceptionHandler[] exceptionHandlers,
AttributeMap attributes)
Factory method that creates a new end state, a state where an executing flow session terminates. |
State |
FlowArtifactFactory.createViewState(java.lang.String id,
Flow flow,
Action[] entryActions,
ViewSelector viewSelector,
Action[] renderActions,
Transition[] transitions,
FlowExecutionExceptionHandler[] exceptionHandlers,
Action[] exitActions,
AttributeMap attributes)
Factory method that creates a new view state, a state where a user is allowed to participate in the flow. |
Uses of ViewSelector in org.springframework.webflow.engine.support |
---|
Classes in org.springframework.webflow.engine.support that implement ViewSelector | |
---|---|
class |
ApplicationViewSelector
Simple view selector that makes an ApplicationView selection using a view name expression. |
class |
ExternalRedirectSelector
Makes view selections requesting a client side redirect to an external URL outside of the flow. |
class |
FlowDefinitionRedirectSelector
Makes a FlowDefinitionRedirect selection when requested, calculating the flowDefinitionId and
executionInput by evaluating an expression against the request context. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |