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
@StepScope
public ItemReader<String> reader() {
public SampleItemReader reader() {
return new SampleItemReader();
}

View File

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

View File

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