tidy up loop sample

This commit is contained in:
dsyer
2009-09-28 14:12:17 +00:00
parent e349e4a643
commit 281178fdf8
6 changed files with 11 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.sample.loopFlow;
package org.springframework.batch.sample.loop;
import org.springframework.batch.core.ExitStatus;
import org.springframework.batch.core.StepExecution;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.sample.loopFlow;
package org.springframework.batch.sample.loop;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.StepExecution;

View File

@@ -33,11 +33,11 @@
<bean id="itemWriter" class="org.springframework.batch.sample.domain.trade.internal.ItemTrackingTradeItemWriter" />
<bean id="limitDecider" class="org.springframework.batch.sample.loopFlow.LimitDecider">
<bean id="limitDecider" class="org.springframework.batch.sample.loop.LimitDecider">
<property name="limit" value="9" />
</bean>
<bean id="resettingListener" class="org.springframework.batch.sample.loopFlow.GeneratingTradeResettingListener">
<bean id="resettingListener" class="org.springframework.batch.sample.loop.GeneratingTradeResettingListener">
<property name="reader" ref="itemGenerator" />
</bean>