Interface BatchJobBuilder<T>
-
- All Known Implementing Classes:
RestoreJobBuilder,SnapshotJobBuilder
public interface BatchJobBuilder<T>- Author:
- Daniel Bernstein Date: Jul 25, 2014
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.batch.core.JobParametersbuildIdentifyingJobParameters(T entity)org.springframework.batch.core.JobbuildJob(T entity, SnapshotJobManagerConfig config)Creates a job for the specified entity;org.springframework.batch.core.JobParametersbuildJobParameters(T entity)java.lang.StringgetJobName()
-
-
-
Method Detail
-
buildJob
org.springframework.batch.core.Job buildJob(T entity, SnapshotJobManagerConfig config) throws SnapshotException
Creates a job for the specified entity;- Parameters:
entity-config-- Returns:
- a job object.
- Throws:
SnapshotException
-
buildJobParameters
org.springframework.batch.core.JobParameters buildJobParameters(T entity)
-
buildIdentifyingJobParameters
org.springframework.batch.core.JobParameters buildIdentifyingJobParameters(T entity)
-
getJobName
java.lang.String getJobName()
-
-