public interface JobInstanceDao
| Modifier and Type | Method and Description |
|---|---|
JobInstance |
createJobInstance(java.lang.String jobName,
JobParameters jobParameters)
Create a JobInstance with given name and parameters.
|
java.util.List<JobInstance> |
findJobInstancesByName(java.lang.String jobName,
int start,
int count)
Fetch the last job instances with the provided name, sorted backwards by
primary key, using a 'like' criteria
|
JobInstance |
getJobInstance(JobExecution jobExecution)
Fetch the JobInstance for the provided JobExecution.
|
JobInstance |
getJobInstance(java.lang.Long instanceId)
Fetch the job instance with the provided identifier.
|
JobInstance |
getJobInstance(java.lang.String jobName,
JobParameters jobParameters)
Find the job instance that matches the given name and parameters.
|
int |
getJobInstanceCount(java.lang.String jobName)
Query the repository for the number of unique
JobInstances
associated with the supplied job name. |
java.util.List<JobInstance> |
getJobInstances(java.lang.String jobName,
int start,
int count)
Fetch the last job instances with the provided name, sorted backwards by
primary key.
|
java.util.List<java.lang.String> |
getJobNames()
Retrieve the names of all job instances sorted alphabetically - i.e.
|
JobInstance createJobInstance(java.lang.String jobName, JobParameters jobParameters)
jobName - jobParameters - JobInstance getJobInstance(java.lang.String jobName, JobParameters jobParameters)
jobName - the name of the jobjobParameters - the parameters with which the job was executedJobInstance object matching the job name and
JobParameters or nullJobInstance getJobInstance(java.lang.Long instanceId)
instanceId - the job identifierJobInstance getJobInstance(JobExecution jobExecution)
jobExecution - the JobExecutionjava.util.List<JobInstance> getJobInstances(java.lang.String jobName, int start, int count)
jobName - the job namestart - the start index of the instances to returncount - the maximum number of objects to returnjava.util.List<java.lang.String> getJobNames()
java.util.List<JobInstance> findJobInstancesByName(java.lang.String jobName, int start, int count)
jobName - start - count - int getJobInstanceCount(java.lang.String jobName)
throws NoSuchJobException
JobInstances
associated with the supplied job name.jobName - the name of the job to query forJobInstances that exist within the
associated job repositoryNoSuchJobException