From 3662f2883b84a521399e5311e8b88a589490a792 Mon Sep 17 00:00:00 2001 From: lucasward Date: Tue, 25 May 2010 03:46:07 +0000 Subject: [PATCH] Javadoc fix --- .../launch/support/CommandLineJobRunner.java | 28 ++++--------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/CommandLineJobRunner.java b/spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/CommandLineJobRunner.java index 803d77f05..d3ba8bcc6 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/CommandLineJobRunner.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/CommandLineJobRunner.java @@ -15,34 +15,14 @@ */ package org.springframework.batch.core.launch.support; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Properties; -import java.util.Set; - import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.springframework.batch.core.BatchStatus; -import org.springframework.batch.core.ExitStatus; -import org.springframework.batch.core.Job; -import org.springframework.batch.core.JobExecution; -import org.springframework.batch.core.JobInstance; -import org.springframework.batch.core.JobParameter; -import org.springframework.batch.core.JobParameters; -import org.springframework.batch.core.JobParametersIncrementer; +import org.springframework.batch.core.*; import org.springframework.batch.core.configuration.JobLocator; import org.springframework.batch.core.converter.DefaultJobParametersConverter; import org.springframework.batch.core.converter.JobParametersConverter; import org.springframework.batch.core.explore.JobExplorer; -import org.springframework.batch.core.launch.JobExecutionNotFailedException; -import org.springframework.batch.core.launch.JobExecutionNotRunningException; -import org.springframework.batch.core.launch.JobExecutionNotStoppedException; -import org.springframework.batch.core.launch.JobLauncher; -import org.springframework.batch.core.launch.JobParametersNotFoundException; +import org.springframework.batch.core.launch.*; import org.springframework.batch.core.repository.JobRepository; import org.springframework.beans.factory.BeanDefinitionStoreException; import org.springframework.beans.factory.config.AutowireCapableBeanFactory; @@ -51,6 +31,8 @@ import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.util.Assert; import org.springframework.util.StringUtils; +import java.util.*; + /** *

* Basic launcher for starting jobs from the command line. In general, it is @@ -126,7 +108,7 @@ import org.springframework.util.StringUtils; * *

* - * java org.springframework.batch.execution.bootstrap.support.CommandLineJobRunner testJob.xml + * java org.springframework.batch.core.launch.support.CommandLineJobRunner testJob.xml * testJob schedule.date=2008/01/24 vendor.id=3902483920 * *