Review process. Split support package (part 1).

This commit is contained in:
dsyer
2008-03-14 10:55:10 +00:00
parent de2715614b
commit ed1680bf14
10 changed files with 16 additions and 16 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.core.support;
package org.springframework.batch.core.converter;
import java.text.DateFormat;
import java.text.DecimalFormat;
@@ -64,7 +64,7 @@ public class DefaultJobParametersConverter implements JobParametersConverter {
* @throws IllegalArgumentException if a number or date is passed in that cannot be parsed, or cast to the correct
* type.
*
* @see org.springframework.batch.core.support.JobParametersConverter#getJobParameters(java.util.Properties)
* @see org.springframework.batch.core.converter.JobParametersConverter#getJobParameters(java.util.Properties)
*/
public JobParameters getJobParameters(Properties props) {
@@ -114,7 +114,7 @@ public class DefaultJobParametersConverter implements JobParametersConverter {
/**
* Use the same suffixes to create properties (omitting the string suffix because it is the default).
*
* @see org.springframework.batch.core.support.JobParametersConverter#getProperties(org.springframework.batch.core.JobParameters)
* @see org.springframework.batch.core.converter.JobParametersConverter#getProperties(org.springframework.batch.core.JobParameters)
*/
public Properties getProperties(JobParameters params) {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.core.support;
package org.springframework.batch.core.converter;
import java.util.Properties;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.core.support;
package org.springframework.batch.core.converter;
import java.io.File;
import java.io.IOException;

View File

@@ -23,9 +23,9 @@ import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParameters;
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.launch.JobLauncher;
import org.springframework.batch.core.support.DefaultJobParametersConverter;
import org.springframework.batch.core.support.JobParametersConverter;
import org.springframework.batch.repeat.ExitStatus;
import org.springframework.beans.factory.BeanDefinitionStoreException;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;

View File

@@ -26,7 +26,7 @@ import java.util.Map.Entry;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersBuilder;
import org.springframework.batch.core.support.JobParametersConverter;
import org.springframework.batch.core.converter.JobParametersConverter;
/**
* @author Lucas Ward
@@ -72,7 +72,7 @@ public class ScheduledJobParametersFactory implements JobParametersConverter {
/**
* Convert schedule date to Date, and assume all other parameters can be represented by their default string value.
*
* @see org.springframework.batch.core.support.JobParametersConverter#getProperties(org.springframework.batch.core.JobParameters)
* @see org.springframework.batch.core.converter.JobParametersConverter#getProperties(org.springframework.batch.core.JobParameters)
*/
public Properties getProperties(JobParameters params) {

View File

@@ -25,12 +25,12 @@ import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.StepExecution;
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.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.support.DefaultJobParametersConverter;
import org.springframework.batch.core.support.JobParametersConverter;
import org.springframework.batch.support.PropertiesConverter;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;