Examples of tasklet()


Examples of org.springframework.batch.core.jsr.step.builder.JsrBatchletStepBuilder.tasklet()

   */
  @Override
  protected TaskletStep createTaskletStep() {
    JsrBatchletStepBuilder jsrBatchletStepBuilder = new JsrBatchletStepBuilder(new StepBuilder(getName()));
    jsrBatchletStepBuilder.setBatchPropertyContext(batchPropertyContext);
    TaskletStepBuilder builder = jsrBatchletStepBuilder.tasklet(getTasklet());
    enhanceTaskletStepBuilder(builder);
    return builder.build();
  }

  @Override
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.