public Collection<JobInstance> listJobInstances(String jobName, int start, int count)
     throws NoSuchJobException {
   checkJobExists(jobName);
   return jobInstanceDao.getJobInstances(jobName, start, count);
 }