summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/TcpEndpointFactory.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-09-09 09:37:35 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-09-09 09:37:35 +0000
commitb2ea05d550077826840214a453b1ba0ac1418b39 (patch)
treed6c37e3857d25733c95b19ad2013e59a8ba3c95b /java/src/IceInternal/TcpEndpointFactory.java
parentAdded new proxy methods: ice_getEndpoints(), ice_getAdapterId(), (diff)
downloadice-b2ea05d550077826840214a453b1ba0ac1418b39.tar.bz2
ice-b2ea05d550077826840214a453b1ba0ac1418b39.tar.xz
ice-b2ea05d550077826840214a453b1ba0ac1418b39.zip
Added support for new proxy methods (ice_getAdapterId(),
ice_newAdapterId(), ice_getEndpoints(), ice_newEndpoints()).
Diffstat (limited to 'java/src/IceInternal/TcpEndpointFactory.java')
-rw-r--r--java/src/IceInternal/TcpEndpointFactory.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/IceInternal/TcpEndpointFactory.java b/java/src/IceInternal/TcpEndpointFactory.java
index 9178b1aabd1..2f03dbe382f 100644
--- a/java/src/IceInternal/TcpEndpointFactory.java
+++ b/java/src/IceInternal/TcpEndpointFactory.java
@@ -19,7 +19,7 @@ final class TcpEndpointFactory implements EndpointFactory
public short
type()
{
- return TcpEndpoint.TYPE;
+ return TcpEndpointI.TYPE;
}
public String
@@ -28,16 +28,16 @@ final class TcpEndpointFactory implements EndpointFactory
return "tcp";
}
- public Endpoint
+ public EndpointI
create(String str)
{
- return new TcpEndpoint(_instance, str);
+ return new TcpEndpointI(_instance, str);
}
- public Endpoint
+ public EndpointI
read(BasicStream s)
{
- return new TcpEndpoint(s);
+ return new TcpEndpointI(s);
}
public void