File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
spring-batch-plus/src/main/java/com/navercorp/spring/batch/plus/job/metadata Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030import org .springframework .batch .core .JobExecution ;
3131import org .springframework .batch .core .StepContribution ;
3232import org .springframework .batch .core .StepExecution ;
33- import org .springframework .batch .core .listener . StepExecutionListenerSupport ;
33+ import org .springframework .batch .core .StepExecutionListener ;
3434import org .springframework .batch .core .scope .context .ChunkContext ;
3535import org .springframework .batch .core .scope .context .StepContext ;
3636import org .springframework .batch .core .step .tasklet .Tasklet ;
4040/**
4141 * A tasklet to check metadata of job instances to delete.
4242 */
43- class CheckMaxJobInstanceIdToDeleteTasklet extends StepExecutionListenerSupport implements Tasklet {
43+ class CheckMaxJobInstanceIdToDeleteTasklet implements Tasklet , StepExecutionListener {
4444
4545 static final String MAX_ID_KEY = "maxJobInstanceId" ;
4646
Original file line number Diff line number Diff line change 2525import org .springframework .batch .core .JobParameters ;
2626import org .springframework .batch .core .StepContribution ;
2727import org .springframework .batch .core .StepExecution ;
28- import org .springframework .batch .core .listener . StepExecutionListenerSupport ;
28+ import org .springframework .batch .core .StepExecutionListener ;
2929import org .springframework .batch .core .scope .context .ChunkContext ;
3030import org .springframework .batch .core .step .tasklet .Tasklet ;
3131import org .springframework .batch .item .ExecutionContext ;
3535 * A tasklet to delete metadata of Spring Batch.
3636 * This tasklet must be executed after execution of {@link CheckMaxJobInstanceIdToDeleteTasklet}
3737 */
38- class DeleteMetadataTasklet extends StepExecutionListenerSupport implements Tasklet {
38+ class DeleteMetadataTasklet implements Tasklet , StepExecutionListener {
3939
4040 static final String LOW_ID_KEY = "lowJobInstanceId" ;
4141
You can’t perform that action at this time.
0 commit comments