diff options
author | Jose <jose@zeroc.com> | 2015-01-22 19:16:43 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-01-22 19:16:43 +0100 |
commit | f623cdba8d3dcf801b1483e15b5f0cb19ac77b4a (patch) | |
tree | 6cf5de43bbad54c89ed9fe232180062d48dba5d2 /java/test/controller/src/main/slice/Controller.ice | |
parent | ICE-6279 OBjC: use servant factory methods (diff) | |
download | ice-f623cdba8d3dcf801b1483e15b5f0cb19ac77b4a.tar.bz2 ice-f623cdba8d3dcf801b1483e15b5f0cb19ac77b4a.tar.xz ice-f623cdba8d3dcf801b1483e15b5f0cb19ac77b4a.zip |
Port test controller server to Java
Diffstat (limited to 'java/test/controller/src/main/slice/Controller.ice')
-rw-r--r-- | java/test/controller/src/main/slice/Controller.ice | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/java/test/controller/src/main/slice/Controller.ice b/java/test/controller/src/main/slice/Controller.ice new file mode 100644 index 00000000000..5f89858a42d --- /dev/null +++ b/java/test/controller/src/main/slice/Controller.ice @@ -0,0 +1,33 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 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 +{ + +interface Server +{ + void waitTestSuccess(); + void waitForServer(); + void terminate(); +}; + +sequence<string> StringSeq; + +interface Controller +{ + Server* runServer(string lang, string name, string protocol, string host, bool winrt, + StringSeq options); +}; + +}; + +}; |