summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_ServantContainerInterceptorRegistration.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_ServantContainerInterceptorRegistration.idl')
-rw-r--r--modules/CIAO/ciao/CCM_ServantContainerInterceptorRegistration.idl24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_ServantContainerInterceptorRegistration.idl b/modules/CIAO/ciao/CCM_ServantContainerInterceptorRegistration.idl
new file mode 100644
index 00000000000..39448de9a58
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_ServantContainerInterceptorRegistration.idl
@@ -0,0 +1,24 @@
+// $Id$
+
+#if !defined (CCM_SERVANTCONTAINERINTERCEPTORREGISTRATION_IDL)
+#define CCM_SERVANTCONTAINERINTERCEPTORREGISTRATION_IDL
+
+#include "ciao/CCM_Cookie.idl"
+#include "ciao/CCM_InvalidRegistration.idl"
+
+module Components
+{
+ module ContainerPortableInterceptor
+ {
+ local interface ServantContainerInterceptor;
+
+ local interface ServantContainerInterceptorRegistration
+ {
+ Components::Cookie register_servant_interceptor (in ServantContainerInterceptor ci);
+ ServantContainerInterceptor unregister_servant_interceptor (in Components::Cookie cookie)
+ raises(InvalidRegistration);
+ };
+ };
+};
+
+#endif /* CCM_SERVANTCONTAINERINTERCEPTORREGISTRATION_IDL */