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

Packages that use JobRepository
org.springframework.batch.core.configuration.annotation   
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.job.builder   
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.builder   
org.springframework.batch.core.step.factory   
org.springframework.batch.test   
 

Uses of JobRepository in org.springframework.batch.core.configuration.annotation
 

Methods in org.springframework.batch.core.configuration.annotation that return JobRepository
protected  JobRepository DefaultBatchConfigurer.createJobRepository()
           
 JobRepository DefaultBatchConfigurer.getJobRepository()
           
 JobRepository BatchConfigurer.getJobRepository()
           
 JobRepository SimpleBatchConfiguration.jobRepository()
           
 JobRepository ModularBatchConfiguration.jobRepository()
           
abstract  JobRepository AbstractBatchConfiguration.jobRepository()
           
 

Constructors in org.springframework.batch.core.configuration.annotation with parameters of type JobRepository
JobBuilderFactory(JobRepository jobRepository)
           
StepBuilderFactory(JobRepository jobRepository, org.springframework.transaction.PlatformTransactionManager transactionManager)
           
 

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.builder
 

Methods in org.springframework.batch.core.job.builder that return JobRepository
protected  JobRepository JobBuilderHelper.getJobRepository()
           
 JobRepository JobBuilderHelper.CommonJobProperties.getJobRepository()
           
 

Methods in org.springframework.batch.core.job.builder with parameters of type JobRepository
 B JobBuilderHelper.repository(JobRepository jobRepository)
          Sets the job repository for the job.
 void JobBuilderHelper.CommonJobProperties.setJobRepository(JobRepository jobRepository)
           
 

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 SimpleJobLauncher.setJobRepository(JobRepository jobRepository)
          Set the JobRepsitory.
 void CommandLineJobRunner.setJobRepository(JobRepository jobRepository)
           
 

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.builder
 

Methods in org.springframework.batch.core.step.builder that return JobRepository
protected  JobRepository StepBuilderHelper.getJobRepository()
           
 JobRepository StepBuilderHelper.CommonStepProperties.getJobRepository()
           
 

Methods in org.springframework.batch.core.step.builder with parameters of type JobRepository
 B StepBuilderHelper.repository(JobRepository jobRepository)
           
 void StepBuilderHelper.CommonStepProperties.setJobRepository(JobRepository jobRepository)
           
 

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

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

Uses of JobRepository in org.springframework.batch.test
 

Methods in org.springframework.batch.test that return JobRepository
 JobRepository JobLauncherTestUtils.getJobRepository()
           
 JobRepository AbstractJobTests.getJobRepository()
          Deprecated.  
 

Methods in org.springframework.batch.test with parameters of type JobRepository
 void JobRepositoryTestUtils.setJobRepository(JobRepository jobRepository)
           
 void JobLauncherTestUtils.setJobRepository(JobRepository jobRepository)
          The JobRepository to use for creating new JobExecution instances.
 

Constructors in org.springframework.batch.test with parameters of type JobRepository
JobRepositoryTestUtils(JobRepository jobRepository, DataSource dataSource)
          Create a JobRepositoryTestUtils with all its mandatory properties.
StepRunner(JobLauncher launcher, JobRepository jobRepository)
           
 



Copyright © 2013 SpringSource. All Rights Reserved.