Package org.springframework.batch.core.job.builder

Examples of org.springframework.batch.core.job.builder.JobBuilder


   *
   * @param name the name of the job
   * @return a job builder
   */
  public JobBuilder get(String name) {
    JobBuilder builder = new JobBuilder(name).repository(jobRepository);
    return builder;
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.job.builder.JobBuilder

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.