INT-3099 Fix Package Tangle
Introduced by INT-3099 - tcp.connection and tcp.connection.event Move events to connection.
This commit is contained in:
@@ -13,9 +13,8 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.integration.ip.tcp.connection.event;
|
||||
package org.springframework.integration.ip.tcp.connection;
|
||||
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnection;
|
||||
|
||||
/**
|
||||
* @author Gary Russell
|
||||
@@ -13,10 +13,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.integration.ip.tcp.connection.event;
|
||||
package org.springframework.integration.ip.tcp.connection;
|
||||
|
||||
import org.springframework.integration.ip.event.IpIntegrationEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnection;
|
||||
|
||||
/**
|
||||
* ApplicationEvent representing normal operations on a {@link TcpConnection}.
|
||||
@@ -22,7 +22,6 @@ import org.springframework.context.ApplicationListener;
|
||||
import org.springframework.integration.Message;
|
||||
import org.springframework.integration.core.MessageProducer;
|
||||
import org.springframework.integration.endpoint.MessageProducerSupport;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.support.MessageBuilder;
|
||||
import org.springframework.util.Assert;
|
||||
import org.springframework.util.CollectionUtils;
|
||||
|
||||
@@ -13,9 +13,8 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.integration.ip.tcp.connection.event;
|
||||
package org.springframework.integration.ip.tcp.connection;
|
||||
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnection;
|
||||
|
||||
/**
|
||||
* ApplicationEvent representing exceptions on a {@link TcpConnection}.
|
||||
@@ -13,9 +13,8 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.integration.ip.tcp.connection.event;
|
||||
package org.springframework.integration.ip.tcp.connection;
|
||||
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnection;
|
||||
|
||||
/**
|
||||
* @author Gary Russell
|
||||
@@ -30,10 +30,6 @@ import org.springframework.context.ApplicationEventPublisher;
|
||||
import org.springframework.core.serializer.Deserializer;
|
||||
import org.springframework.core.serializer.Serializer;
|
||||
import org.springframework.integration.Message;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionCloseEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionExceptionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.ip.tcp.serializer.AbstractByteArraySerializer;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
/**
|
||||
* Classes representing TCP connection events.
|
||||
*/
|
||||
package org.springframework.integration.ip.tcp.connection.event;
|
||||
@@ -56,7 +56,9 @@ import org.springframework.integration.ip.tcp.connection.AbstractConnectionFacto
|
||||
import org.springframework.integration.ip.tcp.connection.DefaultTcpNetSSLSocketFactorySupport;
|
||||
import org.springframework.integration.ip.tcp.connection.DefaultTcpNioSSLConnectionSupport;
|
||||
import org.springframework.integration.ip.tcp.connection.DefaultTcpSSLContextSupport;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionEventListeningMessageProducer;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionSupport;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpMessageMapper;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpNetClientConnectionFactory;
|
||||
@@ -66,8 +68,6 @@ import org.springframework.integration.ip.tcp.connection.TcpNioServerConnectionF
|
||||
import org.springframework.integration.ip.tcp.connection.TcpSSLContextSupport;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpSocketFactorySupport;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpSocketSupport;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.ip.udp.DatagramPacketMessageMapper;
|
||||
import org.springframework.integration.ip.udp.MulticastReceivingChannelAdapter;
|
||||
import org.springframework.integration.ip.udp.MulticastSendingMessageHandler;
|
||||
|
||||
@@ -38,10 +38,10 @@ import org.springframework.integration.history.MessageHistory;
|
||||
import org.springframework.integration.ip.tcp.connection.AbstractClientConnectionFactory;
|
||||
import org.springframework.integration.ip.tcp.connection.AbstractServerConnectionFactory;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnection;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionCloseEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionExceptionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionCloseEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionExceptionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.ip.tcp.serializer.ByteArrayRawSerializer;
|
||||
import org.springframework.integration.ip.util.TestingUtilities;
|
||||
import org.springframework.integration.support.MessageBuilder;
|
||||
|
||||
@@ -32,9 +32,6 @@ import org.mockito.Mockito;
|
||||
import org.springframework.context.ApplicationEvent;
|
||||
import org.springframework.context.ApplicationEventPublisher;
|
||||
import org.springframework.core.serializer.Serializer;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionExceptionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.message.GenericMessage;
|
||||
|
||||
/**
|
||||
|
||||
@@ -37,8 +37,6 @@ import org.springframework.context.ApplicationEvent;
|
||||
import org.springframework.context.ApplicationEventPublisher;
|
||||
import org.springframework.integration.Message;
|
||||
import org.springframework.integration.ip.tcp.TcpReceivingChannelAdapter;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionOpenEvent;
|
||||
import org.springframework.integration.ip.util.TestingUtilities;
|
||||
import org.springframework.integration.test.util.SocketUtils;
|
||||
|
||||
|
||||
@@ -32,8 +32,6 @@ import org.junit.Test;
|
||||
import org.springframework.context.ApplicationEvent;
|
||||
import org.springframework.context.ApplicationEventPublisher;
|
||||
import org.springframework.integration.Message;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionCloseEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.util.TestingUtilities;
|
||||
import org.springframework.integration.support.MessageBuilder;
|
||||
import org.springframework.integration.test.util.SocketUtils;
|
||||
|
||||
@@ -24,8 +24,6 @@ import org.mockito.Mockito;
|
||||
|
||||
import org.springframework.integration.Message;
|
||||
import org.springframework.integration.channel.QueueChannel;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionEvent;
|
||||
import org.springframework.integration.ip.tcp.connection.event.TcpConnectionOpenEvent;
|
||||
|
||||
/**
|
||||
* @author Gary Russell
|
||||
|
||||
Reference in New Issue
Block a user