summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test.idl')
-rw-r--r--TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test.idl b/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test.idl
new file mode 100644
index 00000000000..f154942bbb7
--- /dev/null
+++ b/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/test.idl
@@ -0,0 +1,30 @@
+// -*- IDL -*-
+//$Id$
+#include "tao/PortableInterceptor.pidl"
+#include "tao/PI_Server/PI_Server_include.pidl"
+
+module ForwardRequestTest
+{
+
+ interface test
+ {
+ /// Return the number assigned to the current object. For
+ /// example, object one will return "1," and object two will
+ /// return "2."
+ short number ();
+
+ oneway void shutdown ();
+ };
+
+ local interface ServerRequestInterceptor
+ : PortableInterceptor::ServerRequestInterceptor
+ {
+
+ /// Set the references to which requests will be forwarded.
+ void forward_references (in Object obj1,
+ in Object obj2);
+
+ void reset ();
+ };
+
+};