From e613551cd50181378962f61b2a06610f0bbbfa43 Mon Sep 17 00:00:00 2001 From: dsyer Date: Fri, 5 Oct 2007 15:17:46 +0000 Subject: [PATCH] RESOLVED - issue BATCH-155: InputSources and FieldsetInputSources are not being initialized ( call the open() method) http://opensource.atlassian.com/projects/spring/browse/BATCH-155 --- .../springframework/batch/item/ResourceLifecycle.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/infrastructure/src/main/java/org/springframework/batch/item/ResourceLifecycle.java b/infrastructure/src/main/java/org/springframework/batch/item/ResourceLifecycle.java index ef79b044b..2c3cd900d 100644 --- a/infrastructure/src/main/java/org/springframework/batch/item/ResourceLifecycle.java +++ b/infrastructure/src/main/java/org/springframework/batch/item/ResourceLifecycle.java @@ -17,20 +17,20 @@ package org.springframework.batch.item; /** - * Common interface for classes that require initialization before they can be + * Common interface for classes that require initialisation before they can be * used and need to free resources after they are no longer used. */ public interface ResourceLifecycle { /** - * This method will be invoked at the start of processing to allow - * initialization of resources. + * This method should be invoked by clients at the start of processing to + * allow initialisation of resources. * */ public void open(); /** - * This method will be called invoked after the completion of each step and - * the implementing class should close all managed resources. + * This method should be invoked by clients after the completion of each + * step and the implementing class should close all managed resources. * */ public void close();