IN PROGRESS - BATCH-570: Job.getSteps() does not need to be exposed in the interface

added deprecations
This commit is contained in:
robokaso
2008-06-24 08:15:43 +00:00
parent fd07883253
commit f44e463af3
2 changed files with 5 additions and 0 deletions

View File

@@ -30,6 +30,10 @@ public interface Job {
String getName();
/**
* @deprecated planned for removal in 2.0
* @return the {@link Step}s executed as part of this job.
*/
List getSteps();
boolean isRestartable();

View File

@@ -117,6 +117,7 @@ public class ClassPathXmlApplicationContextJobFactory implements JobFactory {
}
/**
* @deprecated planned for removal in 2.0
* @see org.springframework.batch.core.Job#getSteps()
*/
public List getSteps() {