Uses of Class
org.springframework.batch.core.JobInstance

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.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, 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.repository
 

Methods in org.springframework.batch.core.repository with parameters of type JobInstance
 StepExecution JobRepository.getLastStepExecution(JobInstance jobInstance, Step step)
           
 int JobRepository.getStepExecutionCount(JobInstance jobInstance, Step step)
           
 

Uses of JobInstance in org.springframework.batch.core.repository.dao
 

Methods in org.springframework.batch.core.repository.dao that return JobInstance
 JobInstance MapJobInstanceDao.createJobInstance(Job job, JobParameters jobParameters)
           
 JobInstance JobInstanceDao.createJobInstance(Job job, JobParameters jobParameters)
          Create a JobInstance with given name and parameters.
 JobInstance JdbcJobInstanceDao.createJobInstance(Job job, JobParameters jobParameters)
          In this jdbc implementation a job id is obtained by asking the jobIncrementer (which is likely a sequence) for the nextLong, and then passing the Id and parameter values into an INSERT statement.
 JobInstance MapJobInstanceDao.getJobInstance(Job job, JobParameters jobParameters)
           
 JobInstance JobInstanceDao.getJobInstance(Job job, JobParameters jobParameters)
          Find all job instances that match the given name and parameters.
 JobInstance JdbcJobInstanceDao.getJobInstance(Job job, 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 with parameters of type JobInstance
 List MapJobExecutionDao.findJobExecutions(JobInstance jobInstance)
           
 List JobExecutionDao.findJobExecutions(JobInstance jobInstance)
          Return list of JobExecutions for given JobInstance.
 List JdbcJobExecutionDao.findJobExecutions(JobInstance job)
           
 int MapJobExecutionDao.getJobExecutionCount(JobInstance jobInstance)
           
 int JobExecutionDao.getJobExecutionCount(JobInstance jobInstance)
          Return the number of JobExecutions for the given JobInstance Preconditions: jobInstance must have an id.
 int JdbcJobExecutionDao.getJobExecutionCount(JobInstance jobInstance)
           
 JobExecution MapJobExecutionDao.getLastJobExecution(JobInstance jobInstance)
           
 JobExecution JobExecutionDao.getLastJobExecution(JobInstance 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, Step step)
           
 int SimpleJobRepository.getStepExecutionCount(JobInstance jobInstance, Step step)
           
 



Copyright © 2008 SpringSource. All Rights Reserved.