summaryrefslogtreecommitdiff
path: root/java/test/IceSSL/configuration/ServerI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/IceSSL/configuration/ServerI.java')
-rw-r--r--java/test/IceSSL/configuration/ServerI.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/java/test/IceSSL/configuration/ServerI.java b/java/test/IceSSL/configuration/ServerI.java
new file mode 100644
index 00000000000..b600f9c3a3e
--- /dev/null
+++ b/java/test/IceSSL/configuration/ServerI.java
@@ -0,0 +1,24 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 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.
+//
+// **********************************************************************
+
+class ServerI extends Test._ServerDisp
+{
+ ServerI(Ice.Communicator communicator)
+ {
+ _communicator = communicator;
+ }
+
+ public void
+ destroy()
+ {
+ _communicator.destroy();
+ }
+
+ private Ice.Communicator _communicator;
+}