INTSAMPLES-74 2.2.0.M1 (SF 3.1.1) Compatibility

Change 'user' property to userid to avoid conflict
with environment property.
This commit is contained in:
Gary Russell
2012-05-15 19:59:43 -04:00
parent dc31846615
commit 3cacd50253
5 changed files with 5 additions and 5 deletions

View File

@@ -14,7 +14,7 @@
<bean id="ftpClientFactory" class="org.springframework.integration.ftp.session.DefaultFtpSessionFactory">
<property name="host" value="${host}"/>
<property name="port" value="${port}"/>
<property name="username" value="${user}"/>
<property name="username" value="${userid}"/>
<property name="password" value="${password}"/>
</bean>

View File

@@ -14,7 +14,7 @@
<bean id="ftpClientFactory" class="org.springframework.integration.ftp.session.DefaultFtpSessionFactory">
<property name="host" value="${host}"/>
<property name="port" value="${port}"/>
<property name="username" value="${user}"/>
<property name="username" value="${userid}"/>
<property name="password" value="${password}"/>
</bean>

View File

@@ -18,7 +18,7 @@
class="org.springframework.integration.ftp.session.DefaultFtpSessionFactory">
<property name="host" value="${host}"/>
<property name="port" value="${port}"/>
<property name="username" value="${user}"/>
<property name="username" value="${userid}"/>
<property name="password" value="${password}"/>
</bean>

View File

@@ -1,4 +1,4 @@
user=demo
userid=demo
password=demo
port=3333
host=localhost