summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/EndpointFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/EndpointFactory.java')
-rw-r--r--java/src/IceInternal/EndpointFactory.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/java/src/IceInternal/EndpointFactory.java b/java/src/IceInternal/EndpointFactory.java
index aabdec78581..61425287f5c 100644
--- a/java/src/IceInternal/EndpointFactory.java
+++ b/java/src/IceInternal/EndpointFactory.java
@@ -13,7 +13,9 @@ public interface EndpointFactory
{
short type();
String protocol();
- EndpointI create(String str, boolean oaEndpoint);
+ EndpointI create(java.util.ArrayList<String> args, boolean oaEndpoint);
EndpointI read(BasicStream s);
void destroy();
+
+ EndpointFactory clone(ProtocolInstance instance);
}