return concretions (#3373)

This commit is contained in:
Tadgh 2022-02-10 21:07:47 -05:00 committed by GitHub
parent 38912423c1
commit 700221ad07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ public class BatchJobConfig {
@Bean @Bean
@StepScope @StepScope
public ItemReader<String> reader() { public SampleItemReader reader() {
return new SampleItemReader(); return new SampleItemReader();
} }

View File

@ -94,7 +94,7 @@ public class MdmClearJobConfig {
@Bean @Bean
@StepScope @StepScope
public ItemProcessor<List<Long>, List<String>> deleteThenExpungeCompositeProcessor() { public CompositeItemProcessor<List<Long>, List<String>> deleteThenExpungeCompositeProcessor() {
CompositeItemProcessor<List<Long>, List<String>> compositeProcessor = new CompositeItemProcessor<>(); CompositeItemProcessor<List<Long>, List<String>> compositeProcessor = new CompositeItemProcessor<>();
List itemProcessors = new ArrayList<>(); List itemProcessors = new ArrayList<>();
itemProcessors.add(mdmLinkDeleter()); itemProcessors.add(mdmLinkDeleter());

View File

@ -177,7 +177,7 @@ public class BulkImportJobConfig {
@Bean @Bean
@StepScope @StepScope
public ItemWriter<ParsedBulkImportRecord> bulkImportFileWriter() { public BulkImportFileWriter bulkImportFileWriter() {
return new BulkImportFileWriter(); return new BulkImportFileWriter();
} }