Package org.springframework.batch.core.jsr.step

Examples of org.springframework.batch.core.jsr.step.DecisionStep


   * @see org.springframework.beans.factory.FactoryBean#getObject()
   */
  @Override
  public Step getObject() throws Exception {

    DecisionStep decisionStep = new DecisionStep(jsrDecider);
    decisionStep.setName(name);
    decisionStep.setJobRepository(jobRepository);
    decisionStep.setAllowStartIfComplete(true);

    return decisionStep;
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.jsr.step.DecisionStep

Copyright © 2018 www.massapicom. 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.