gdamour 2004/06/24 16:39:03
Modified: sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/network RemoteNodeJoiner.java NetworkTransportFactory.java sandbox/messaging/src/test/org/apache/geronimo/messaging/remotenode MockMessagingTransportFactory.java sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode RemoteNodeManagerImpl.java MessagingTransportFactory.java Log: Rename: - MessaggingTransportFactory.factoryNode to MessaggingTransportFactory.factoryRemoteNode; and - MessaggingTransportFactory.factoryNodeConnection to MessaggingTransportFactory.factoryRemoteNodeConnection. Revision Changes Path 1.3 +2 -2 incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/network/RemoteNodeJoiner.java Index: RemoteNodeJoiner.java =================================================================== RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/network/RemoteNodeJoiner.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RemoteNodeJoiner.java 3 Jun 2004 14:39:44 -0000 1.2 +++ RemoteNodeJoiner.java 24 Jun 2004 23:39:03 -0000 1.3 @@ -48,7 +48,7 @@ public RemoteNodeConnection newConnection() throws IOException, CommunicationException { - return connFactory.factoryNodeConnection(nodeInfo, ioContext); + return connFactory.factoryRemoteNodeConnection(nodeInfo, ioContext); } } 1.3 +3 -3 incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/network/NetworkTransportFactory.java Index: NetworkTransportFactory.java =================================================================== RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/network/NetworkTransportFactory.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- NetworkTransportFactory.java 10 Jun 2004 23:12:25 -0000 1.2 +++ NetworkTransportFactory.java 24 Jun 2004 23:39:03 -0000 1.3 @@ -62,11 +62,11 @@ return new NodeServerImpl(aNodeInfo, anIOContext, sm, cp); } - public RemoteNode factoryNode(NodeInfo aNodeInfo, IOContext anIOContext) { + public RemoteNode factoryRemoteNode(NodeInfo aNodeInfo, IOContext anIOContext) { return new RemoteNodeJoiner(aNodeInfo, anIOContext, this); } - public RemoteNodeConnection factoryNodeConnection( + public RemoteNodeConnection factoryRemoteNodeConnection( NodeInfo aNodeInfo, IOContext anIOContext) { return new RemoteNodeJoinerConnection(aNodeInfo, anIOContext, sm); } 1.2 +2 -2 incubator-geronimo/sandbox/messaging/src/test/org/apache/geronimo/messaging/remotenode/MockMessagingTransportFactory.java Index: MockMessagingTransportFactory.java =================================================================== RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/test/org/apache/geronimo/messaging/remotenode/MockMessagingTransportFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MockMessagingTransportFactory.java 11 May 2004 12:06:43 -0000 1.1 +++ MockMessagingTransportFactory.java 24 Jun 2004 23:39:03 -0000 1.2 @@ -19,11 +19,11 @@ return server; } - public RemoteNode factoryNode(NodeInfo aNodeInfo, IOContext anIOContext) { + public RemoteNode factoryRemoteNode(NodeInfo aNodeInfo, IOContext anIOContext) { return null; } - public RemoteNodeConnection factoryNodeConnection( + public RemoteNodeConnection factoryRemoteNodeConnection( NodeInfo aNodeInfo, IOContext anIOContext) { return null; 1.5 +2 -2 incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/RemoteNodeManagerImpl.java Index: RemoteNodeManagerImpl.java =================================================================== RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/RemoteNodeManagerImpl.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- RemoteNodeManagerImpl.java 10 Jun 2004 23:12:25 -0000 1.4 +++ RemoteNodeManagerImpl.java 24 Jun 2004 23:39:03 -0000 1.5 @@ -218,7 +218,7 @@ if ( null != remoteNode ) { return remoteNode; } - remoteNode = factory.factoryNode(aNodeInfo, ioContext); + remoteNode = factory.factoryRemoteNode(aNodeInfo, ioContext); RemoteNodeConnection connection; try { connection = remoteNode.newConnection(); 1.2 +3 -3 incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/MessagingTransportFactory.java Index: MessagingTransportFactory.java =================================================================== RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/remotenode/MessagingTransportFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MessagingTransportFactory.java 11 May 2004 12:06:42 -0000 1.1 +++ MessagingTransportFactory.java 24 Jun 2004 23:39:03 -0000 1.2 @@ -47,7 +47,7 @@ * communicate with the remote node. * @return RemoteNode. */ - public RemoteNode factoryNode( + public RemoteNode factoryRemoteNode( NodeInfo aNodeInfo, IOContext anIOContext); /** @@ -58,7 +58,7 @@ * communicate with the remote node. * @return RemoteNodeConnection. */ - public RemoteNodeConnection factoryNodeConnection( + public RemoteNodeConnection factoryRemoteNodeConnection( NodeInfo aNodeInfo, IOContext anIOContext); }