Reorganized the execution.step package to contain all Step implementations

This commit is contained in:
lucasward
2008-02-22 21:49:05 +00:00
parent 8797814b1b
commit 909894a23b

View File

@@ -86,14 +86,14 @@
</bean>
<bean id="taskletStep"
class="org.springframework.batch.execution.step.tasklet.TaskletStep"
class="org.springframework.batch.execution.step.TaskletStep"
abstract="true">
<property name="jobRepository" ref="jobRepository" />
<property name="allowStartIfComplete" value="true" />
<property name="saveExecutionContext" value="true" />
</bean>
<bean id="abstractStep" class="org.springframework.batch.execution.step.simple.ItemOrientedStep" abstract="true">
<bean id="abstractStep" class="org.springframework.batch.execution.step.ItemOrientedStep" abstract="true">
<property name="transactionManager" ref="transactionManager" />
<property name="jobRepository" ref="jobRepository" />
<property name="allowStartIfComplete" value="true" />
@@ -112,7 +112,7 @@
<property name="commitInterval" value="1" />
</bean>
<bean id="chunkedStep" class="org.springframework.batch.execution.step.simple.ChunkedStep" abstract="true">
<bean id="chunkedStep" class="org.springframework.batch.execution.step.ChunkedStep" abstract="true">
<property name="allowStartIfComplete" value="true" />
<property name="saveExecutionContext" value="true" />
<property name="jobRepository" ref="jobRepository" />