Examples of JobInstanceType


Examples of org.springframework.yarn.batch.repository.bindings.JobInstanceType

   *
   * @param jobInstance the job instance
   * @return converted job instance type
   */
  public static JobInstanceType convertJobInstanceType(JobInstance jobInstance) {
    JobInstanceType type = new JobInstanceType();
    type.id = jobInstance.getId();
    type.version = jobInstance.getVersion();
    type.jobName = jobInstance.getJobName();
    return type;
  }
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.