INT-3797-4.1.x: Fix SFTP doc for the CachingSF

JIRA: https://jira.spring.io/browse/INT-3797
This commit is contained in:
Artem Bilan
2015-08-14 11:19:50 -04:00
parent d95b5c9d71
commit eafdd1ce4e

View File

@@ -235,12 +235,12 @@ xsi:schemaLocation="http://www.springframework.org/schema/integration/sftp
<bean id="cachingSessionFactory"
class="org.springframework.integration.file.remote.session.CachingSessionFactory">
<constructor-arg ref="sftpSessionFactory"/>
<property name="sessionCacheSize" value="10"/>
<constructor-arg value="10"/>
<property name="sessionWaitTimeout" value="1000"/>
</bean>]]></programlisting>
<para>
In the above example you see a <classname>CachingSessionFactory</classname> created with the
<code>sessionCacheSize</code> set to 10 and the <code>sessionWaitTimeout</code> set to 1 second (its value is in millliseconds).
<code>sessionCacheSize</code> set to 10 and the <code>sessionWaitTimeout</code> set to 1 second (its value is in milliseconds).
</para>
<para>