OPEN - issue BATCH-324: Step as factory for StepExecutor

http://jira.springframework.org/browse/BATCH-324

Substantial re-org of core domain packages to align concerns
This commit is contained in:
dsyer
2008-01-29 16:36:16 +00:00
parent d4d09d2ad8
commit f9619e345e
57 changed files with 333 additions and 384 deletions

View File

@@ -13,9 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.executor;
package org.springframework.batch.core.domain;
import org.springframework.batch.core.AbstractExceptionTests;
import org.springframework.batch.core.domain.JobExecutionException;
/**
* @author Dave Syer

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration;
package org.springframework.batch.core.domain;
import java.util.Collections;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.core.configuration;
package org.springframework.batch.core.domain;
import junit.framework.TestCase;

View File

@@ -13,9 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.executor;
package org.springframework.batch.core.domain;
import org.springframework.batch.core.AbstractExceptionTests;
import org.springframework.batch.core.domain.StepInterruptedException;
/**
* @author Dave Syer

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration;
package org.springframework.batch.core.domain;
import junit.framework.TestCase;

View File

@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration;
package org.springframework.batch.core.repository;
import org.springframework.batch.core.AbstractExceptionTests;
import org.springframework.batch.core.domain.DuplicateJobException;
import org.springframework.batch.core.repository.DuplicateJobException;
/**
* @author Dave Syer

View File

@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration;
package org.springframework.batch.core.repository;
import org.springframework.batch.core.AbstractExceptionTests;
import org.springframework.batch.core.domain.JobException;
import org.springframework.batch.core.repository.JobException;
/**
* @author Dave Syer

View File

@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration;
package org.springframework.batch.core.repository;
import org.springframework.batch.core.AbstractExceptionTests;
import org.springframework.batch.core.domain.NoSuchJobException;
import org.springframework.batch.core.repository.NoSuchJobException;
/**
* @author Dave Syer