|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JobInstance | |
|---|---|
| org.springframework.batch.core | Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. |
| org.springframework.batch.core.explore | Interfaces and related classes to support meta data browsing. |
| org.springframework.batch.core.explore.support | Specific implementations of explorer concerns. |
| org.springframework.batch.core.repository | Interfaces and generic implementations of repository concerns. |
| org.springframework.batch.core.repository.dao | Specific implementations of dao concerns. |
| org.springframework.batch.core.repository.support | Specific implementations of repository concerns. |
| Uses of JobInstance in org.springframework.batch.core |
|---|
| Methods in org.springframework.batch.core that return JobInstance | |
|---|---|
JobInstance |
JobExecution.getJobInstance()
|
| Methods in org.springframework.batch.core with parameters of type JobInstance | |
|---|---|
void |
JobExecution.setJobInstance(JobInstance jobInstance)
|
| Constructors in org.springframework.batch.core with parameters of type JobInstance | |
|---|---|
JobExecution(JobInstance job)
Constructor for transient (unsaved) instances. |
|
JobExecution(JobInstance job,
java.lang.Long id)
Because a JobExecution isn't valid unless the job is set, this constructor is the only valid one from a modelling point of view. |
|
| Uses of JobInstance in org.springframework.batch.core.explore |
|---|
| Methods in org.springframework.batch.core.explore that return JobInstance | |
|---|---|
JobInstance |
JobExplorer.getJobInstance(java.lang.Long instanceId)
|
| Methods in org.springframework.batch.core.explore that return types with arguments of type JobInstance | |
|---|---|
java.util.List<JobInstance> |
JobExplorer.getJobInstances(java.lang.String jobName,
int start,
int count)
Fetch JobInstance values in descending order of creation (and
therefore usually of first execution). |
| Methods in org.springframework.batch.core.explore with parameters of type JobInstance | |
|---|---|
java.util.List<JobExecution> |
JobExplorer.getJobExecutions(JobInstance jobInstance)
|
| Uses of JobInstance in org.springframework.batch.core.explore.support |
|---|
| Methods in org.springframework.batch.core.explore.support that return JobInstance | |
|---|---|
JobInstance |
SimpleJobExplorer.getJobInstance(java.lang.Long instanceId)
|
| Methods in org.springframework.batch.core.explore.support that return types with arguments of type JobInstance | |
|---|---|
java.util.List<JobInstance> |
SimpleJobExplorer.getJobInstances(java.lang.String jobName,
int start,
int count)
|
| Methods in org.springframework.batch.core.explore.support with parameters of type JobInstance | |
|---|---|
java.util.List<JobExecution> |
SimpleJobExplorer.getJobExecutions(JobInstance jobInstance)
|
| Uses of JobInstance in org.springframework.batch.core.repository |
|---|
| Methods in org.springframework.batch.core.repository with parameters of type JobInstance | |
|---|---|
StepExecution |
JobRepository.getLastStepExecution(JobInstance jobInstance,
java.lang.String stepName)
|
int |
JobRepository.getStepExecutionCount(JobInstance jobInstance,
java.lang.String stepName)
|
| Uses of JobInstance in org.springframework.batch.core.repository.dao |
|---|
| Methods in org.springframework.batch.core.repository.dao that return JobInstance | |
|---|---|
JobInstance |
MapJobInstanceDao.createJobInstance(java.lang.String jobName,
JobParameters jobParameters)
|
JobInstance |
JobInstanceDao.createJobInstance(java.lang.String jobName,
JobParameters jobParameters)
Create a JobInstance with given name and parameters. |
JobInstance |
JdbcJobInstanceDao.createJobInstance(java.lang.String jobName,
JobParameters jobParameters)
In this jdbc implementation a job id is obtained by asking the jobIncrementer (which is likely a sequence) for the next long value, and then passing the Id and parameter values into an INSERT statement. |
JobInstance |
MapJobInstanceDao.getJobInstance(JobExecution jobExecution)
|
JobInstance |
JobInstanceDao.getJobInstance(JobExecution jobExecution)
Fetch the JobInstance for the provided JobExecution. |
JobInstance |
JdbcJobInstanceDao.getJobInstance(JobExecution jobExecution)
|
JobInstance |
MapJobInstanceDao.getJobInstance(java.lang.Long instanceId)
|
JobInstance |
JobInstanceDao.getJobInstance(java.lang.Long instanceId)
Fetch the job instance with the provided identifier. |
JobInstance |
JdbcJobInstanceDao.getJobInstance(java.lang.Long instanceId)
|
JobInstance |
MapJobInstanceDao.getJobInstance(java.lang.String jobName,
JobParameters jobParameters)
|
JobInstance |
JobInstanceDao.getJobInstance(java.lang.String jobName,
JobParameters jobParameters)
Find the job instance that matches the given name and parameters. |
JobInstance |
JdbcJobInstanceDao.getJobInstance(java.lang.String jobName,
JobParameters jobParameters)
The job table is queried for any jobs that match the given identifier, adding them to a list via the RowMapper callback. |
| Methods in org.springframework.batch.core.repository.dao that return types with arguments of type JobInstance | |
|---|---|
java.util.List<JobInstance> |
MapJobInstanceDao.getJobInstances(java.lang.String jobName,
int start,
int count)
|
java.util.List<JobInstance> |
JobInstanceDao.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<JobInstance> |
JdbcJobInstanceDao.getJobInstances(java.lang.String jobName,
int start,
int count)
|
| Methods in org.springframework.batch.core.repository.dao with parameters of type JobInstance | |
|---|---|
java.util.List<JobExecution> |
MapJobExecutionDao.findJobExecutions(JobInstance jobInstance)
|
java.util.List<JobExecution> |
JobExecutionDao.findJobExecutions(JobInstance jobInstance)
Return all JobExecution for given JobInstance, sorted
backwards by creation order (so the first element is the most recent). |
java.util.List<JobExecution> |
JdbcJobExecutionDao.findJobExecutions(JobInstance job)
|
JobExecution |
MapJobExecutionDao.getLastJobExecution(JobInstance jobInstance)
|
JobExecution |
JobExecutionDao.getLastJobExecution(JobInstance jobInstance)
Find the last JobExecution to have been created for a given
JobInstance. |
JobExecution |
JdbcJobExecutionDao.getLastJobExecution(JobInstance jobInstance)
|
| Uses of JobInstance in org.springframework.batch.core.repository.support |
|---|
| Methods in org.springframework.batch.core.repository.support with parameters of type JobInstance | |
|---|---|
StepExecution |
SimpleJobRepository.getLastStepExecution(JobInstance jobInstance,
java.lang.String stepName)
|
int |
SimpleJobRepository.getStepExecutionCount(JobInstance jobInstance,
java.lang.String stepName)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||