Uses of Interface
org.springframework.batch.core.job.flow.Flow

Packages that use Flow
org.springframework.batch.core.job.builder   
org.springframework.batch.core.job.flow   
org.springframework.batch.core.job.flow.support   
org.springframework.batch.core.job.flow.support.state   
org.springframework.batch.core.step.builder   
 

Uses of Flow in org.springframework.batch.core.job.builder
 

Methods in org.springframework.batch.core.job.builder that return Flow
protected  Flow FlowBuilder.flow()
           
 

Methods in org.springframework.batch.core.job.builder with parameters of type Flow
 FlowBuilder<Q> FlowBuilder.SplitBuilder.add(Flow... flows)
          Add flows to the split, in addition to the current state already present in the parent builder.
protected  FlowJobBuilder FlowJobBuilder.flow(Flow flow)
          Provide a single flow to execute as the job.
 FlowBuilder<Q> FlowBuilder.from(Flow flow)
          Start again from a subflow that was already registered.
 FlowBuilder<Q> FlowBuilder.next(Flow flow)
          Go next on successful completion to a subflow.
 JobFlowBuilder JobBuilder.start(Flow flow)
          Create a new job builder that will execute a flow.
 JobFlowBuilder FlowJobBuilder.start(Flow flow)
          Start a job with this flow, but expect to transition from there to other flows or steps.
 FlowBuilder<Q> FlowBuilder.start(Flow flow)
          If a flow should start with a subflow use this as the first state.
 FlowBuilder<Q> FlowBuilder.TransitionBuilder.stopAndRestart(Flow flow)
          Stop the flow and provide a flow to start with if the flow is restarted.
 FlowBuilder<Q> FlowBuilder.TransitionBuilder.to(Flow flow)
          Specify the next state as a complete flow.
 

Constructors in org.springframework.batch.core.job.builder with parameters of type Flow
JobFlowBuilder(FlowJobBuilder parent, Flow flow)
           
 

Uses of Flow in org.springframework.batch.core.job.flow
 

Methods in org.springframework.batch.core.job.flow that return types with arguments of type Flow
 Collection<Flow> FlowHolder.getFlows()
           
 

Methods in org.springframework.batch.core.job.flow with parameters of type Flow
 void FlowStep.setFlow(Flow flow)
          Public setter for the flow.
 void FlowJob.setFlow(Flow flow)
          Public setter for the flow.
 

Constructors in org.springframework.batch.core.job.flow with parameters of type Flow
FlowStep(Flow flow)
          Constructor for a FlowStep that sets the flow and of the step explicitly.
 

Uses of Flow in org.springframework.batch.core.job.flow.support
 

Classes in org.springframework.batch.core.job.flow.support that implement Flow
 class SimpleFlow
          A Flow that branches conditionally depending on the exit status of the last State.
 

Uses of Flow in org.springframework.batch.core.job.flow.support.state
 

Methods in org.springframework.batch.core.job.flow.support.state that return types with arguments of type Flow
 Collection<Flow> SplitState.getFlows()
           
 Collection<Flow> FlowState.getFlows()
           
 

Constructors in org.springframework.batch.core.job.flow.support.state with parameters of type Flow
FlowState(Flow flow, String name)
           
 

Constructor parameters in org.springframework.batch.core.job.flow.support.state with type arguments of type Flow
SplitState(Collection<Flow> flows, String name)
           
 

Uses of Flow in org.springframework.batch.core.step.builder
 

Methods in org.springframework.batch.core.step.builder with parameters of type Flow
 FlowStepBuilder StepBuilder.flow(Flow flow)
          Create a new step builder that will execute a flow.
 FlowStepBuilder FlowStepBuilder.flow(Flow flow)
          Provide a flow to execute during the step.
 



Copyright © 2013 SpringSource. All Rights Reserved.