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.job.flow   
org.springframework.batch.core.launch.support Support classes for use in bootstrap and launch implementations or configurations. 
org.springframework.batch.core.partition.support   
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. 
 

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

Methods in org.springframework.batch.core.job that return JobRepository
protected  JobRepository AbstractJob.getJobRepository()
          Convenience method for subclasses to access the job repository.
 

Methods in org.springframework.batch.core.job with parameters of type JobRepository
 void SimpleStepHandler.setJobRepository(JobRepository jobRepository)
           
 void AbstractJob.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.
 

Constructors in org.springframework.batch.core.job with parameters of type JobRepository
SimpleStepHandler(JobRepository jobRepository)
           
SimpleStepHandler(JobRepository jobRepository, ExecutionContext executionContext)
           
 

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

Constructors in org.springframework.batch.core.job.flow with parameters of type JobRepository
JobFlowExecutor(JobRepository jobRepository, StepHandler stepHandler, JobExecution execution)
           
 

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

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

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

Methods in org.springframework.batch.core.partition.support with parameters of type JobRepository
 void SimpleStepExecutionSplitter.setJobRepository(JobRepository jobRepository)
          The job repository that will be used to manage the persistence of the delegate step executions.
 

Constructors in org.springframework.batch.core.partition.support with parameters of type JobRepository
SimpleStepExecutionSplitter(JobRepository jobRepository, boolean allowStartIfComplete, String stepName, Partitioner partitioner)
          Construct a SimpleStepExecutionSplitter from its mandatory properties.
SimpleStepExecutionSplitter(JobRepository jobRepository, Step step, Partitioner partitioner)
          Deprecated. use SimpleStepExecutionSplitter.SimpleStepExecutionSplitter(JobRepository, boolean, String, Partitioner) instead
 

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.
 

Methods in org.springframework.batch.core.repository.support that return JobRepository
 JobRepository AbstractJobRepositoryFactoryBean.getJobRepository()
          Convenience method for clients to grab the JobRepository without a cast.
 

Methods in org.springframework.batch.core.repository.support that return types with arguments of type JobRepository
 Class<JobRepository> AbstractJobRepositoryFactoryBean.getObjectType()
          The type of object to be returned from AbstractJobRepositoryFactoryBean.getObject().
 

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 SimpleStepFactoryBean.setJobRepository(JobRepository jobRepository)
          Public setter for JobRepository.
 



Copyright © 2012. All Rights Reserved.