From 8b290c4522b58223d26c4ee8f219851d406e2544 Mon Sep 17 00:00:00 2001 From: dsyer Date: Thu, 23 Aug 2007 20:05:21 +0000 Subject: [PATCH] Javadocs. OPEN - issue BATCH-58: Make JobStream and JobRun optional properties of Job (e.g. through join to optional table) http://opensource.atlassian.com/projects/spring/browse/BATCH-58 --- .../core/runtime/JobIdentifierFactory.java | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/core/src/main/java/org/springframework/batch/core/runtime/JobIdentifierFactory.java b/core/src/main/java/org/springframework/batch/core/runtime/JobIdentifierFactory.java index d9ddadbfd..b2c490d32 100644 --- a/core/src/main/java/org/springframework/batch/core/runtime/JobIdentifierFactory.java +++ b/core/src/main/java/org/springframework/batch/core/runtime/JobIdentifierFactory.java @@ -17,12 +17,13 @@ package org.springframework.batch.core.runtime; /** - * A job configuration can be executed with many possible runtime parameters, - * which identify the instance of the job. This factory allows job identifiers - * to be created with different properties according to the - * {@link JobIdentifier} strategy required. For example some projects or jobs - * need a schedule date as part of the {@link JobIdentifier} and some do not - * (e.g. for an ad-hoc execution a simple label might be enough). + * A factory for {@link JobIdentifier} instances. A job configuration can be + * executed with many possible runtime parameters, which identify the instance + * of the job. This factory allows job identifiers to be created with different + * properties according to the {@link JobIdentifier} strategy required. For + * example some projects or jobs need a schedule date as part of the + * {@link JobIdentifier} and some do not (e.g. for an ad-hoc execution a simple + * label might be enough). * * * @author Dave Syer @@ -32,7 +33,9 @@ public interface JobIdentifierFactory { /** * Get a new {@link JobIdentifier} instance. - * @param name the name of the job configuration. + * + * @param name + * the name of the job configuration. * @return a {@link JobIdentifier} with the same name. */ public JobIdentifier getJobIdentifier(String name);