Example usage for org.springframework.batch.core.job.flow FlowStep setFlow

List of usage examples for org.springframework.batch.core.job.flow FlowStep setFlow

Introduction

In this page you can find the example usage for org.springframework.batch.core.job.flow FlowStep setFlow.

Prototype

public void setFlow(Flow flow) 

Source Link

Document

Public setter for the flow.

Usage

From source file:org.springframework.batch.core.configuration.xml.StepParserStepFactoryBean.java

@SuppressWarnings("serial")
private void configureFlowStep(FlowStep ts) {
    configureAbstractStep(ts);// www. j av  a  2s. c o  m
    if (flow != null) {
        ts.setFlow(flow);
    }
}