INT-1487 updated some test config references to commons.serializer as well as tooling annotations in schemas

This commit is contained in:
Mark Fisher
2010-10-22 21:50:09 -05:00
parent 180753ca5b
commit d0ef062c2e
7 changed files with 14 additions and 14 deletions

View File

@@ -1707,7 +1707,7 @@
</xsd:documentation>
<xsd:appinfo>
<tool:annotation kind="ref">
<tool:expected-type type="org.springframework.commons.serializer.Serializer" />
<tool:expected-type type="org.springframework.core.serializer.Serializer" />
</tool:annotation>
</xsd:appinfo>
</xsd:annotation>
@@ -1741,7 +1741,7 @@
</xsd:documentation>
<xsd:appinfo>
<tool:annotation kind="ref">
<tool:expected-type type="org.springframework.commons.serializer.Deserializer" />
<tool:expected-type type="org.springframework.core.serializer.Deserializer" />
</tool:annotation>
</xsd:appinfo>
</xsd:annotation>

View File

@@ -294,7 +294,7 @@ the factory, the connection will be closed after a response is received.
<xsd:annotation>
<xsd:appinfo>
<tool:annotation kind="ref">
<tool:expected-type type="org.springframework.commons.serializer.Serializer"/>
<tool:expected-type type="org.springframework.core.serializer.Serializer"/>
</tool:annotation>
</xsd:appinfo>
<xsd:documentation>
@@ -308,7 +308,7 @@ would normally be the same but this is not required.
<xsd:annotation>
<xsd:appinfo>
<tool:annotation kind="ref">
<tool:expected-type type="org.springframework.commons.serializer.Deserializer"/>
<tool:expected-type type="org.springframework.core.serializer.Deserializer"/>
</tool:annotation>
</xsd:appinfo>
<xsd:documentation>

View File

@@ -214,9 +214,9 @@
<bean id="interceptors" class="org.springframework.integration.ip.tcp.connection.TcpConnectionInterceptorFactoryChain" />
<bean id="defaultSerializer" class="org.springframework.commons.serializer.DefaultSerializer" />
<bean id="defaultSerializer" class="org.springframework.core.serializer.support.DefaultSerializer" />
<bean id="defaultDeserializer" class="org.springframework.commons.serializer.DefaultDeserializer" />
<bean id="defaultDeserializer" class="org.springframework.core.serializer.support.DefaultDeserializer" />
<ip:tcp-outbound-channel-adapter id="tcpNewOut1"
channel="tcpChannel"

View File

@@ -9,9 +9,9 @@
<bean id="tcpIpUtils" class="org.springframework.integration.ip.util.SocketUtils" />
<bean id="serializer" class="org.springframework.commons.serializer.DefaultSerializer" />
<bean id="serializer" class="org.springframework.core.serializer.support.DefaultSerializer" />
<bean id="deserializer" class="org.springframework.commons.serializer.DefaultDeserializer" />
<bean id="deserializer" class="org.springframework.core.serializer.support.DefaultDeserializer" />
<bean id="helloWorldInterceptors" class="org.springframework.integration.ip.tcp.connection.TcpConnectionInterceptorFactoryChain">
<property name="interceptors">

View File

@@ -11,9 +11,9 @@
<bean id="tcpIpUtils" class="org.springframework.integration.ip.util.SocketUtils" />
<bean id="serializer" class="org.springframework.commons.serializer.DefaultSerializer" />
<bean id="serializer" class="org.springframework.core.serializer.support.DefaultSerializer" />
<bean id="deserializer" class="org.springframework.commons.serializer.DefaultDeserializer" />
<bean id="deserializer" class="org.springframework.core.serializer.support.DefaultDeserializer" />
<int-ip:tcp-connection-factory id="server"
type="server"

View File

@@ -15,8 +15,8 @@
<bean id="crLfSerializer" class="org.springframework.integration.ip.tcp.serializer.ByteArrayCrLfSerializer" />
<bean id="stxEtxSerializer" class="org.springframework.integration.ip.tcp.serializer.ByteArrayStxEtxSerializer" />
<bean id="lengthHeaderSerializer" class="org.springframework.integration.ip.tcp.serializer.ByteArrayLengthHeaderSerializer" />
<bean id="javaSerializer" class="org.springframework.commons.serializer.DefaultSerializer" />
<bean id="javaDeserializer" class="org.springframework.commons.serializer.DefaultDeserializer" />
<bean id="javaSerializer" class="org.springframework.core.serializer.support.DefaultSerializer" />
<bean id="javaDeserializer" class="org.springframework.core.serializer.support.DefaultDeserializer" />
<ip:tcp-connection-factory id="crLfServer"
type="server"

View File

@@ -97,7 +97,7 @@
]]></xsd:documentation>
<xsd:appinfo>
<tool:annotation kind="ref">
<tool:expected-type type="org.springframework.commons.serializer.OutputStreamingConverter" />
<tool:expected-type type="org.springframework.core.serializer.Serializer" />
</tool:annotation>
</xsd:appinfo>
</xsd:annotation>
@@ -109,7 +109,7 @@
]]></xsd:documentation>
<xsd:appinfo>
<tool:annotation kind="ref">
<tool:expected-type type="org.springframework.commons.serializer.InputStreamingConverter" />
<tool:expected-type type="org.springframework.core.serializer.Deserializer" />
</tool:annotation>
</xsd:appinfo>
</xsd:annotation>