Uses of Interface
org.springframework.batch.core.repository.JobRepository

Packages that use JobRepository
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.launch.support Support classes for use in bootstrap and launch implementations or configurations. 
org.springframework.batch.core.repository.support Specific implementations of repository concerns. 
org.springframework.batch.core.step Specific implementations of step concerns. 
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.core.step.tasklet Interfaces and generic implementations of tasklet concerns. 
 

Uses of JobRepository in org.springframework.batch.core.job
 

Methods in org.springframework.batch.core.job with parameters of type JobRepository
 void SimpleJob.setJobRepository(JobRepository jobRepository)
          Public setter for the JobRepository that is needed to manage the state of the batch meta domain (jobs, steps, executions) during the life of a job.
 

Uses of JobRepository in org.springframework.batch.core.launch.support
 

Methods in org.springframework.batch.core.launch.support with parameters of type JobRepository
 void SimpleJobLauncher.setJobRepository(JobRepository jobRepository)
          Set the JobRepsitory.
 

Uses of JobRepository in org.springframework.batch.core.repository.support
 

Classes in org.springframework.batch.core.repository.support that implement JobRepository
 class SimpleJobRepository
           Implementation of JobRepository that stores JobInstances, JobExecutions, and StepExecutions using the injected DAOs.
 

Uses of JobRepository in org.springframework.batch.core.step
 

Methods in org.springframework.batch.core.step that return JobRepository
protected  JobRepository AbstractStep.getJobRepository()
           
 

Methods in org.springframework.batch.core.step with parameters of type JobRepository
 void AbstractStep.setJobRepository(JobRepository jobRepository)
          Public setter for JobRepository.
 

Uses of JobRepository in org.springframework.batch.core.step.item
 

Methods in org.springframework.batch.core.step.item with parameters of type JobRepository
 void AbstractStepFactoryBean.setJobRepository(JobRepository jobRepository)
          Public setter for JobRepository.
 

Uses of JobRepository in org.springframework.batch.core.step.tasklet
 

Constructors in org.springframework.batch.core.step.tasklet with parameters of type JobRepository
TaskletStep(Tasklet tasklet, JobRepository jobRepository)
          Creates a new Step for executing a Tasklet
 



Copyright © 2008 SpringSource. All Rights Reserved.