OPEN - issue BATCH-429: Combine the core and execution modules

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

Removed dependency from resource to launch
This commit is contained in:
dsyer
2008-03-09 09:18:40 +00:00
parent a34b10777c
commit 005de0523e
5 changed files with 5 additions and 4 deletions

View File

@@ -24,6 +24,7 @@ import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.configuration.JobLocator;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.runtime.DefaultJobParametersFactory;
import org.springframework.batch.core.runtime.JobParametersFactory;
import org.springframework.batch.repeat.ExitStatus;
import org.springframework.beans.factory.BeanDefinitionStoreException;

View File

@@ -29,6 +29,7 @@ import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.repository.JobRestartException;
import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException;
import org.springframework.batch.core.repository.NoSuchJobException;
import org.springframework.batch.core.runtime.DefaultJobParametersFactory;
import org.springframework.batch.core.runtime.JobParametersFactory;
import org.springframework.batch.support.PropertiesConverter;
import org.springframework.beans.factory.InitializingBean;

View File

@@ -28,8 +28,8 @@ import java.util.Map.Entry;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.StepListener;
import org.springframework.batch.core.launch.support.DefaultJobParametersFactory;
import org.springframework.batch.core.listener.StepListenerSupport;
import org.springframework.batch.core.runtime.DefaultJobParametersFactory;
import org.springframework.batch.core.runtime.JobParametersFactory;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.core.io.FileSystemResourceLoader;

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.launch.support;
package org.springframework.batch.core.runtime;
import java.text.DateFormat;
import java.text.DecimalFormat;
@@ -28,7 +28,6 @@ import java.util.Map.Entry;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersBuilder;
import org.springframework.batch.core.runtime.JobParametersFactory;
import org.springframework.util.StringUtils;
/**