INT-3392 Fix Package Tangle

https://jira.spring.io/browse/INT-3392

`TcpDeserializationExceptionEvent` was incorrectly
in the connection package; move to serializer.
This commit is contained in:
Gary Russell
2014-04-29 10:01:53 -04:00
parent 81aa7eabd3
commit a226eedf4b
3 changed files with 1 additions and 3 deletions

View File

@@ -25,7 +25,6 @@ import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.core.serializer.Deserializer;
import org.springframework.core.serializer.Serializer;
import org.springframework.integration.ip.tcp.connection.TcpDeserializationExceptionEvent;
/**
* Base class for (de)serializers that provide a mechanism to

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.integration.ip.tcp.connection;
package org.springframework.integration.ip.tcp.serializer;
import org.springframework.integration.ip.event.IpIntegrationEvent;

View File

@@ -37,7 +37,6 @@ import org.junit.Test;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.core.serializer.DefaultDeserializer;
import org.springframework.integration.ip.tcp.connection.TcpDeserializationExceptionEvent;
import org.springframework.integration.ip.util.SocketTestUtils;
import org.springframework.integration.test.util.SocketUtils;