|
46 | 46 | * methods, their interfaces, annotation, and expected arguments. |
47 | 47 | * |
48 | 48 | * @author Lucas Ward |
| 49 | + * @author Hyunsang Han |
49 | 50 | * @since 2.0 |
50 | 51 | * @see StepListenerFactoryBean |
51 | 52 | */ |
52 | 53 | public enum StepListenerMetaData implements ListenerMetaData { |
53 | 54 |
|
54 | 55 | BEFORE_STEP("beforeStep", "before-step-method", BeforeStep.class, StepExecutionListener.class, StepExecution.class), |
55 | 56 | AFTER_STEP("afterStep", "after-step-method", AfterStep.class, StepExecutionListener.class, StepExecution.class), |
56 | | - BEFORE_CHUNK("beforeChunk", "before-chunk-method", BeforeChunk.class, ChunkListener.class, ChunkContext.class), |
57 | | - AFTER_CHUNK("afterChunk", "after-chunk-method", AfterChunk.class, ChunkListener.class, ChunkContext.class), |
| 57 | + BEFORE_CHUNK("beforeChunk", "before-chunk-method", BeforeChunk.class, ChunkListener.class, Chunk.class), |
| 58 | + AFTER_CHUNK("afterChunk", "after-chunk-method", AfterChunk.class, ChunkListener.class, Chunk.class), |
58 | 59 | AFTER_CHUNK_ERROR("afterChunkError", "after-chunk-error-method", AfterChunkError.class, ChunkListener.class, |
59 | 60 | ChunkContext.class), |
60 | 61 | BEFORE_READ("beforeRead", "before-read-method", BeforeRead.class, ItemReadListener.class), |
|
0 commit comments