Package org.springframework.batch.core.job.flow

Examples of org.springframework.batch.core.job.flow.FlowJob.afterPropertiesSet()


    if (flow != null) {
      flowJob.setFlow(flow);
    }

    flowJob.afterPropertiesSet();
    return flowJob;
  }

  public void setRestartable(Boolean restartable) {
    this.restartable = restartable;
View Full Code Here


    FlowJob job = new FlowJob();
    job.setName(getName());
    job.setFlow(flow);
    super.enhance(job);
    try {
      job.afterPropertiesSet();
    }
    catch (Exception e) {
      throw new StepBuilderException(e);
    }
    return job;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.