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

Examples of org.springframework.batch.core.jsr.step.batchlet.BatchletAdapter


   */
  public void setStepTasklet(Object tasklet) {
    if(tasklet instanceof Tasklet) {
      super.setTasklet((Tasklet) tasklet);
    } else if(tasklet instanceof Batchlet){
      super.setTasklet(new BatchletAdapter((Batchlet) tasklet));
    } else {
      throw new IllegalArgumentException("The field tasklet must reference an implementation of " +
          "either org.springframework.batch.core.step.tasklet.Tasklet or javax.batch.api.Batchlet");
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.jsr.step.batchlet.BatchletAdapter

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.