Package | Description |
---|---|
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.
|
org.springframework.batch.test |
Modifier and Type | Method and Description |
---|---|
protected JobRepository |
AbstractJob.getJobRepository()
Convenience method for subclasses to access the job repository.
|
Modifier and Type | Method and Description |
---|---|
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. |
void |
SimpleStepHandler.setJobRepository(JobRepository jobRepository) |
Constructor and Description |
---|
SimpleStepHandler(JobRepository jobRepository) |
SimpleStepHandler(JobRepository jobRepository,
ExecutionContext executionContext) |
Constructor and Description |
---|
JobFlowExecutor(JobRepository jobRepository,
StepHandler stepHandler,
JobExecution execution) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleJobOperator.setJobRepository(JobRepository jobRepository) |
void |
SimpleJobLauncher.setJobRepository(JobRepository jobRepository)
Set the JobRepsitory.
|
void |
CommandLineJobRunner.setJobRepository(JobRepository jobRepository) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleStepExecutionSplitter.setJobRepository(JobRepository jobRepository)
The job repository that will be used to manage the persistence of the
delegate step executions.
|
Constructor and Description |
---|
SimpleStepExecutionSplitter(JobRepository jobRepository,
boolean allowStartIfComplete,
String stepName,
Partitioner partitioner)
Construct a
SimpleStepExecutionSplitter from its mandatory
properties. |
SimpleStepExecutionSplitter(JobRepository jobRepository,
Step step,
Partitioner partitioner)
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleJobRepository
Implementation of
JobRepository that stores JobInstances,
JobExecutions, and StepExecutions using the injected DAOs. |
Modifier and Type | Method and Description |
---|---|
JobRepository |
AbstractJobRepositoryFactoryBean.getJobRepository()
Convenience method for clients to grab the
JobRepository without
a cast. |
Modifier and Type | Method and Description |
---|---|
Class<JobRepository> |
AbstractJobRepositoryFactoryBean.getObjectType()
The type of object to be returned from
AbstractJobRepositoryFactoryBean.getObject() . |
Modifier and Type | Method and Description |
---|---|
protected JobRepository |
AbstractStep.getJobRepository() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractStep.setJobRepository(JobRepository jobRepository)
Public setter for
JobRepository . |
Modifier and Type | Method and Description |
---|---|
void |
SimpleStepFactoryBean.setJobRepository(JobRepository jobRepository)
Public setter for
JobRepository . |
Modifier and Type | Method and Description |
---|---|
JobRepository |
AbstractJobTests.getJobRepository()
Deprecated.
|
JobRepository |
JobLauncherTestUtils.getJobRepository() |
Modifier and Type | Method and Description |
---|---|
void |
JobRepositoryTestUtils.setJobRepository(JobRepository jobRepository) |
void |
JobLauncherTestUtils.setJobRepository(JobRepository jobRepository)
The
JobRepository to use for creating new JobExecution
instances. |
Constructor and Description |
---|
JobRepositoryTestUtils(JobRepository jobRepository,
DataSource dataSource)
Create a
JobRepositoryTestUtils with all its mandatory
properties. |
StepRunner(JobLauncher launcher,
JobRepository jobRepository) |
Copyright © 2013 SpringSource. All rights reserved.