IN PROGRESS - BATCH-711: Upgrade ItemWriter and implementations to use parameterized types

fix the build
This commit is contained in:
robokaso
2008-07-23 09:16:26 +00:00
parent 2740d79331
commit 323bb4155f
4 changed files with 4 additions and 4 deletions

View File

@@ -93,7 +93,7 @@
value="file:target/test-outputs/20070122.testStream.ParallelCustomerReportStep.TEMP.txt" />
<property name="fieldSetCreator">
<bean
class="org.springframework.batch.item.file.mapping.PassThroughFieldSetMapper" />
class="org.springframework.batch.item.file.mapping.PassThroughFieldSetCreator" />
</property>
</bean>

View File

@@ -24,7 +24,7 @@
<property name="resource"
value="file:target/test-outputs/20070122.testStream.multilineStep.txt" />
<property name="fieldSetCreator">
<bean class="org.springframework.batch.item.file.mapping.PassThroughFieldSetMapper"/>
<bean class="org.springframework.batch.item.file.mapping.PassThroughFieldSetCreator"/>
</property>
</bean>
</property>

View File

@@ -32,7 +32,7 @@
<property name="resource" ref="fileOutputLocator" />
<property name="fieldSetCreator">
<bean
class="org.springframework.batch.item.file.mapping.PassThroughFieldSetMapper" />
class="org.springframework.batch.item.file.mapping.PassThroughFieldSetCreator" />
</property>
</bean>

View File

@@ -32,7 +32,7 @@
<property name="resource" ref="customerFileLocator" />
<property name="fieldSetCreator">
<bean
class="org.springframework.batch.item.file.mapping.PassThroughFieldSetMapper" />
class="org.springframework.batch.item.file.mapping.PassThroughFieldSetCreator" />
</property>
</bean>
</property>