summaryrefslogtreecommitdiff
path: root/java/test/controller/src/main/slice/Controller.ice
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-11-30 15:22:26 +0100
committerBenoit Foucher <benoit@zeroc.com>2016-11-30 15:22:26 +0100
commit7b88a5e3be7e88eef2cbf053fcc6b673de858321 (patch)
treed2e9068e0acb88790df60a44e0b3bfe784bcd124 /java/test/controller/src/main/slice/Controller.ice
parentFixes to run IceGrid test with Windows bindist in debug mode (diff)
downloadice-7b88a5e3be7e88eef2cbf053fcc6b673de858321.tar.bz2
ice-7b88a5e3be7e88eef2cbf053fcc6b673de858321.tar.xz
ice-7b88a5e3be7e88eef2cbf053fcc6b673de858321.zip
Removed Java controller, fixes to investiage IceGrid/replication test failure
Diffstat (limited to 'java/test/controller/src/main/slice/Controller.ice')
-rw-r--r--java/test/controller/src/main/slice/Controller.ice38
1 files changed, 0 insertions, 38 deletions
diff --git a/java/test/controller/src/main/slice/Controller.ice b/java/test/controller/src/main/slice/Controller.ice
deleted file mode 100644
index edc11307013..00000000000
--- a/java/test/controller/src/main/slice/Controller.ice
+++ /dev/null
@@ -1,38 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2016 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.
-//
-// **********************************************************************
-
-module Test
-{
-
-module Common
-{
-
-exception ServerFailedException
-{
- string reason;
-};
-
-interface Server
-{
- void waitTestSuccess();
- void waitForServer() throws ServerFailedException;
- void terminate();
-};
-
-sequence<string> StringSeq;
-
-interface Controller
-{
- Server* runServer(string lang, string name, string protocol, string host, bool winrt, string configName,
- StringSeq options);
-};
-
-};
-
-};