summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/EndpointI.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-10-18 11:04:30 +0200
committerBenoit Foucher <benoit@zeroc.com>2012-10-18 11:04:30 +0200
commit276c7279d4743b2947b2a5bbe0ded0e44d051a96 (patch)
tree94ac486c6db06792b26a00c980890e1800e9ea4c /java/src/IceInternal/EndpointI.java
parentMore WinRT build setting and system fixes (diff)
downloadice-276c7279d4743b2947b2a5bbe0ded0e44d051a96.tar.bz2
ice-276c7279d4743b2947b2a5bbe0ded0e44d051a96.tar.xz
ice-276c7279d4743b2947b2a5bbe0ded0e44d051a96.zip
Fixed ICE-4591, better acceptor tracing
Diffstat (limited to 'java/src/IceInternal/EndpointI.java')
-rw-r--r--java/src/IceInternal/EndpointI.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/java/src/IceInternal/EndpointI.java b/java/src/IceInternal/EndpointI.java
index 129b4e25190..60af992f668 100644
--- a/java/src/IceInternal/EndpointI.java
+++ b/java/src/IceInternal/EndpointI.java
@@ -41,6 +41,11 @@ abstract public class EndpointI implements Ice.Endpoint, java.lang.Comparable<En
public abstract short type();
//
+ // Return the protocol name.
+ //
+ public abstract String protocol();
+
+ //
// Return the timeout for the endpoint in milliseconds. 0 means
// non-blocking, -1 means no timeout.
//
@@ -84,7 +89,7 @@ abstract public class EndpointI implements Ice.Endpoint, java.lang.Comparable<En
//
// Return the protocol supported by the endpoint.
//
- public Ice.ProtocolVersion protocol()
+ public Ice.ProtocolVersion protocolVersion()
{
return _protocol;
}
@@ -92,7 +97,7 @@ abstract public class EndpointI implements Ice.Endpoint, java.lang.Comparable<En
//
// Return the encoding supported by the endpoint.
//
- public Ice.EncodingVersion encoding()
+ public Ice.EncodingVersion encodingVersion()
{
return _encoding;
}