summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-10-16 19:30:22 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-10-16 19:30:22 +0000
commitd6547180a8afd2226edd6efa4abbab3d762e172d (patch)
tree64203e15979a5c59345acd2d7ee54ea5d1b8e946 /TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl
parent222c156d48279e5b2d3c973083ffe2e388d84c5a (diff)
downloadATCD-d6547180a8afd2226edd6efa4abbab3d762e172d.tar.gz
Wed Oct 16 12:23:29 2002 Jaiganesh Balasubramanian <jai@doc.ece.uci.edu
Diffstat (limited to 'TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl')
-rw-r--r--TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl b/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl
new file mode 100644
index 00000000000..0c9a380b07c
--- /dev/null
+++ b/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Test.idl
@@ -0,0 +1,23 @@
+//
+// $Id$
+
+/// Put the interfaces in a module, to avoid global namespace pollution
+module Test
+{
+ /// A very simple interface
+ interface Basic
+ {
+ /// Return a simple string
+ string get_string ();
+
+ /// A method to shutdown the ORB
+ /**
+ * This method is used to simplify the test shutdown process
+ */
+ oneway void shutdown ();
+
+ /// A method to remove the servant from the LoadManager Object Group.
+ oneway void remove_member ();
+ };
+};
+