Examples of JobExecutionType


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

   * @param jobExecution the job execution
   * @param stepExecution the step execution
   * @return the job execution type
   */
  public static JobExecutionType convertJobExecutionType(JobExecution jobExecution, StepExecution stepExecution) {
    JobExecutionType type = new JobExecutionType();
    type.id = jobExecution.getId();
    type.version = jobExecution.getVersion();

    // TODO: ??? can it be null???
    if (jobExecution.getJobInstance() != null) {
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.