Renamed Step.simple package to step.support.

This commit is contained in:
lucasward
2008-02-22 23:02:28 +00:00
parent 53da080079
commit 325a383eae
2 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@
</property>
<property name="chunker">
<bean
class="org.springframework.batch.execution.step.simple.ItemChunker">
class="org.springframework.batch.execution.step.support.ItemChunker">
<constructor-arg>
<bean
class="org.springframework.batch.item.reader.ValidatingItemReader">
@@ -35,7 +35,7 @@
</constructor-arg>
<property name="itemSkipPolicy">
<bean
class="org.springframework.batch.execution.step.simple.LimitCheckingItemSkipPolicy">
class="org.springframework.batch.execution.step.support.LimitCheckingItemSkipPolicy">
<constructor-arg value="5" />
</bean>
</property>
@@ -43,7 +43,7 @@
</property>
<property name="dechunker">
<bean
class="org.springframework.batch.execution.step.simple.ItemDechunker">
class="org.springframework.batch.execution.step.support.ItemDechunker">
<constructor-arg>
<bean
class="org.springframework.batch.sample.item.writer.TradeWriter"
@@ -51,7 +51,7 @@
</constructor-arg>
<property name="itemSkipPolicy">
<bean
class="org.springframework.batch.execution.step.simple.LimitCheckingItemSkipPolicy">
class="org.springframework.batch.execution.step.support.LimitCheckingItemSkipPolicy">
<constructor-arg value="5" />
</bean>
</property>

View File

@@ -125,7 +125,7 @@
</bean>
<bean id="repeatOperationsStep" parent="abstractStep"
class="org.springframework.batch.execution.step.simple.RepeatOperationsStep"
class="org.springframework.batch.execution.step.support.RepeatOperationsStep"
abstract="true">
</bean>