Examples of JobInstance


Examples of org.springframework.batch.core.JobInstance

    return stepExecutionDao.countStepExecutions(jobName, stepName);
  }

  @Override
  public JobInstance getJobInstance(long jobInstanceId) throws NoSuchJobInstanceException {
    JobInstance jobInstance = jobInstanceDao.getJobInstance(jobInstanceId);
    if (jobInstance == null) {
      throw new NoSuchJobInstanceException("JobInstance with id=" + jobInstanceId + " does not exist");
    }
    return jobInstance;
  }
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.