From c744a5212a9f68d3d34348752f53a66c5316f482 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Mon, 22 Nov 2010 17:07:11 -0500 Subject: [PATCH] updated javadoc, removed invalid links --- .../file/remote/session/CachingSessionFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-integration-file/src/main/java/org/springframework/integration/file/remote/session/CachingSessionFactory.java b/spring-integration-file/src/main/java/org/springframework/integration/file/remote/session/CachingSessionFactory.java index 1d6231a425..77429da910 100644 --- a/spring-integration-file/src/main/java/org/springframework/integration/file/remote/session/CachingSessionFactory.java +++ b/spring-integration-file/src/main/java/org/springframework/integration/file/remote/session/CachingSessionFactory.java @@ -26,9 +26,9 @@ import org.springframework.beans.factory.DisposableBean; import org.springframework.util.Assert; /** - * This approach - of having a SessionPool ({@link SftpSessionPool}) that has an - * implementation of a queued SessionPool ({@link CachingSessionFactory}) - was - * taken almost directly from the Spring Integration FTP adapter. + * A {@link SessionFactory} implementation that caches Sessions for reuse without + * requiring reconnection each time the Session is retrieved from the factory. + * This implementation wraps and delegates to a target SessionFactory instance. * * @author Josh Long * @author Oleg Zhurakousky