summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-13 12:26:38 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-13 12:26:38 +0000
commitb77cef68c99577b77fdc693ce9ce0ce699b6bc4c (patch)
treef6a5015d0007515be6f57cc9408460fe0054cbe7
parentAddressed comments. (diff)
downloadice-b77cef68c99577b77fdc693ce9ce0ce699b6bc4c.tar.bz2
ice-b77cef68c99577b77fdc693ce9ce0ce699b6bc4c.tar.xz
ice-b77cef68c99577b77fdc693ce9ce0ce699b6bc4c.zip
fixes
-rw-r--r--java/src/Ice/CommunicatorI.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/java/src/Ice/CommunicatorI.java b/java/src/Ice/CommunicatorI.java
index 712bd83eed6..ab280b304b9 100644
--- a/java/src/Ice/CommunicatorI.java
+++ b/java/src/Ice/CommunicatorI.java
@@ -118,6 +118,13 @@ class CommunicatorI extends LocalObjectImpl implements Communicator
return adapter;
}
+ public synchronized ObjectAdapter
+ createObjectAdapterWithEndpoints(String name, String endpoints)
+ {
+ getProperties()->setProperty(name + ".Endpoints", endpoints);
+ return createObjectAdapter(name);
+ }
+
public synchronized void
addObjectFactory(ObjectFactory factory, String id)
{