diff options
Diffstat (limited to 'java/test/Ice/binding/RemoteObjectAdapterI.java')
-rw-r--r-- | java/test/Ice/binding/RemoteObjectAdapterI.java | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/java/test/Ice/binding/RemoteObjectAdapterI.java b/java/test/Ice/binding/RemoteObjectAdapterI.java new file mode 100644 index 00000000000..3485cf3c8fb --- /dev/null +++ b/java/test/Ice/binding/RemoteObjectAdapterI.java @@ -0,0 +1,43 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +import Test.*; + +public class RemoteObjectAdapterI extends _RemoteObjectAdapterDisp +{ + public + RemoteObjectAdapterI(Ice.ObjectAdapter adapter) + { + _adapter = adapter; + _testIntf = TestIntfPrxHelper.uncheckedCast(_adapter.add(new TestI(), Ice.Util.stringToIdentity("test"))); + _adapter.activate(); + } + + public TestIntfPrx + getTestIntf(Ice.Current current) + { + return _testIntf; + } + + public void + deactivate(Ice.Current current) + { + try + { + _adapter.deactivate(); + _adapter.waitForDeactivate(); + } + catch(Ice.ObjectAdapterDeactivatedException ex) + { + } + } + + final Ice.ObjectAdapter _adapter; + final TestIntfPrx _testIntf; +}; |