summaryrefslogtreecommitdiff
path: root/java/test/IceSSL/configuration/ServerFactoryI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/IceSSL/configuration/ServerFactoryI.java')
-rw-r--r--java/test/IceSSL/configuration/ServerFactoryI.java13
1 files changed, 9 insertions, 4 deletions
diff --git a/java/test/IceSSL/configuration/ServerFactoryI.java b/java/test/IceSSL/configuration/ServerFactoryI.java
index 6fc001550d9..1e65013c89f 100644
--- a/java/test/IceSSL/configuration/ServerFactoryI.java
+++ b/java/test/IceSSL/configuration/ServerFactoryI.java
@@ -7,7 +7,12 @@
//
// **********************************************************************
-class ServerFactoryI extends Test._ServerFactoryDisp
+package test.IceSSL.configuration;
+import test.IceSSL.configuration.Test.ServerPrx;
+import test.IceSSL.configuration.Test.ServerPrxHelper;
+import test.IceSSL.configuration.Test._ServerFactoryDisp;
+
+class ServerFactoryI extends _ServerFactoryDisp
{
private static void
test(boolean b)
@@ -18,7 +23,7 @@ class ServerFactoryI extends Test._ServerFactoryDisp
}
}
- public Test.ServerPrx
+ public ServerPrx
createServer(java.util.Map _props, Ice.Current current)
{
// TODO: Fix the parameters and remove the cast below when the Java2 mapping is removed.
@@ -40,11 +45,11 @@ class ServerFactoryI extends Test._ServerFactoryDisp
_servers.put(obj.ice_getIdentity(), server);
adapter.activate();
- return Test.ServerPrxHelper.uncheckedCast(obj);
+ return ServerPrxHelper.uncheckedCast(obj);
}
public void
- destroyServer(Test.ServerPrx srv, Ice.Current current)
+ destroyServer(ServerPrx srv, Ice.Current current)
{
Ice.Identity key = srv.ice_getIdentity();
if(_servers.containsKey(key))