BATCH-1053: refactor State and AbstractJob to remove cycle

This commit is contained in:
dsyer
2009-02-09 13:59:28 +00:00
parent 563a5432ee
commit 74c167f34c
19 changed files with 697 additions and 49 deletions

View File

@@ -31,6 +31,7 @@ import org.springframework.batch.core.job.flow.FlowExecution;
import org.springframework.batch.core.job.flow.FlowExecutionException;
import org.springframework.batch.core.job.flow.FlowExecutionStatus;
import org.springframework.batch.core.job.flow.FlowExecutor;
import org.springframework.batch.core.job.flow.State;
/**
* @author Dave Syer

View File

@@ -17,6 +17,7 @@ package org.springframework.batch.core.job.flow.support;
import org.springframework.batch.core.job.flow.FlowExecutionStatus;
import org.springframework.batch.core.job.flow.FlowExecutor;
import org.springframework.batch.core.job.flow.State;
import org.springframework.batch.core.job.flow.support.state.AbstractState;
/**