INT-2996 Fix Class and Package Cycles

INT-2996 Fix Package Cycle

Move interface ...store.MetadataStore to ...store.metadata.

INT-2996 Fix Class Tangle

TcpConnectionEvent incorrectly referenced the
concrete TcpConnectionSupport instead of TcpConnection.
This commit is contained in:
Gary Russell
2013-04-16 18:20:01 -04:00
parent b50410923f
commit 00cb16ec21
13 changed files with 47 additions and 46 deletions

View File

@@ -44,7 +44,7 @@ public class TcpConnectionEvent extends ApplicationEvent {
private final Throwable throwable;
public TcpConnectionEvent(TcpConnectionSupport connection, EventType type,
public TcpConnectionEvent(TcpConnection connection, EventType type,
String connectionFactoryName) {
super(connection);
this.type = type;
@@ -52,7 +52,7 @@ public class TcpConnectionEvent extends ApplicationEvent {
this.connectionFactoryName = connectionFactoryName;
}
public TcpConnectionEvent(TcpConnectionSupport connection, Throwable t,
public TcpConnectionEvent(TcpConnection connection, Throwable t,
String connectionFactoryName) {
super(connection);
this.type = TcpConnectionEventType.EXCEPTION;