Uses of Interface
org.springframework.webflow.definition.FlowDefinition

Packages that use FlowDefinition
org.springframework.webflow.definition Core, stable abstractions for representing flow definitions. 
org.springframework.webflow.definition.registry The flow definition registry subsystem for managing containers of flow definitions. 
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.impl The implementation of Spring Web Flow's flow execution machine. 
org.springframework.webflow.execution Core, stable abstractions for representing runtime executions of flow definitions. 
org.springframework.webflow.execution.factory Supporting types often used by flow execution factory implementations. 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
org.springframework.webflow.test.execution Support for testing the execution of a flow definition. 
 

Uses of FlowDefinition in org.springframework.webflow.definition
 

Methods in org.springframework.webflow.definition that return FlowDefinition
 FlowDefinition StateDefinition.getOwner()
          Returns the flow definition this state belongs to.
 

Uses of FlowDefinition in org.springframework.webflow.definition.registry
 

Methods in org.springframework.webflow.definition.registry that return FlowDefinition
 FlowDefinition FlowDefinitionHolder.getFlowDefinition()
          Returns the flow definition held by this holder.
 FlowDefinition StaticFlowDefinitionHolder.getFlowDefinition()
           
 FlowDefinition FlowDefinitionLocator.getFlowDefinition(java.lang.String id)
          Lookup the flow definition with the specified id.
 FlowDefinition FlowDefinitionRegistryImpl.getFlowDefinition(java.lang.String id)
           
 FlowDefinition[] FlowDefinitionRegistry.getFlowDefinitions()
          Return all flow definitions registered in this registry.
 FlowDefinition[] FlowDefinitionRegistryImpl.getFlowDefinitions()
           
 

Constructors in org.springframework.webflow.definition.registry with parameters of type FlowDefinition
StaticFlowDefinitionHolder(FlowDefinition flowDefinition)
          Creates the static flow definition holder.
 

Uses of FlowDefinition in org.springframework.webflow.engine
 

Classes in org.springframework.webflow.engine that implement FlowDefinition
 class Flow
          A single flow definition.
 

Methods in org.springframework.webflow.engine that return FlowDefinition
 FlowDefinition State.getOwner()
           
 

Uses of FlowDefinition in org.springframework.webflow.engine.builder
 

Methods in org.springframework.webflow.engine.builder that return FlowDefinition
 FlowDefinition RefreshableFlowDefinitionHolder.getFlowDefinition()
           
 

Uses of FlowDefinition in org.springframework.webflow.engine.impl
 

Methods in org.springframework.webflow.engine.impl that return FlowDefinition
 FlowDefinition FlowExecutionImpl.getDefinition()
           
 

Methods in org.springframework.webflow.engine.impl with parameters of type FlowDefinition
 FlowExecution FlowExecutionImplFactory.createFlowExecution(FlowDefinition flowDefinition)
           
 

Uses of FlowDefinition in org.springframework.webflow.execution
 

Methods in org.springframework.webflow.execution that return FlowDefinition
 FlowDefinition RequestContext.getActiveFlow()
          Returns the definition of the flow that is currently executing.
 FlowDefinition FlowExecutionContext.getDefinition()
          Returns the root flow definition associated with this executing flow.
 FlowDefinition FlowSession.getDefinition()
          Returns the flow definition backing this session.
 

Methods in org.springframework.webflow.execution with parameters of type FlowDefinition
 FlowExecution FlowExecutionFactory.createFlowExecution(FlowDefinition flowDefinition)
          Create a new flow execution product for the given flow definition.
 void FlowExecutionListener.sessionStarting(RequestContext context, FlowDefinition definition, MutableAttributeMap input)
          Called to indicate a new flow definition session is about to be created and started.
 void FlowExecutionListenerAdapter.sessionStarting(RequestContext context, FlowDefinition definition, MutableAttributeMap input)
           
 

Uses of FlowDefinition in org.springframework.webflow.execution.factory
 

Methods in org.springframework.webflow.execution.factory with parameters of type FlowDefinition
 boolean FlowExecutionListenerCriteria.appliesTo(FlowDefinition definition)
          Do the listeners guarded by this criteria object apply to the provided flow definition?
 FlowExecutionListener[] FlowExecutionListenerLoader.getListeners(FlowDefinition flowDefinition)
          Get the flow execution listeners that apply to the given flow definition.
 FlowExecutionListener[] StaticFlowExecutionListenerLoader.getListeners(FlowDefinition flowDefinition)
           
 FlowExecutionListener[] ConditionalFlowExecutionListenerLoader.getListeners(FlowDefinition flowDefinition)
          Returns the array of flow execution listeners for specified flow.
 

Uses of FlowDefinition in org.springframework.webflow.test
 

Methods in org.springframework.webflow.test that return FlowDefinition
 FlowDefinition MockRequestContext.getActiveFlow()
           
 FlowDefinition MockFlowExecutionContext.getDefinition()
           
 FlowDefinition MockFlowSession.getDefinition()
           
 

Uses of FlowDefinition in org.springframework.webflow.test.execution
 

Methods in org.springframework.webflow.test.execution that return FlowDefinition
protected  FlowDefinition AbstractExternalizedFlowExecutionTests.getFlowDefinition()
          Returns the flow definition being tested.
protected abstract  FlowDefinition AbstractFlowExecutionTests.getFlowDefinition()
          Returns the flow definition to be tested.
 



Copyright © 2009 Spring Framework. All Rights Reserved.