summaryrefslogtreecommitdiff
path: root/CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-19 20:24:10 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-19 20:24:10 +0000
commitd958fd738f10fab8ede3ceb8ec1230aa3846f24d (patch)
tree04923db775f25343bc95b6d8911266f4182234cd /CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl
parent4c07d7b0ffc93d721bf5df1912836b92a30c50ef (diff)
downloadATCD-d958fd738f10fab8ede3ceb8ec1230aa3846f24d.tar.gz
Mon Feb 19 20:22:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl')
-rw-r--r--CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl24
1 files changed, 24 insertions, 0 deletions
diff --git a/CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl b/CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl
new file mode 100644
index 00000000000..031f06f1a0f
--- /dev/null
+++ b/CIAO/ciao/extension/CCM_ClientContainerInterceptorRegistration.idl
@@ -0,0 +1,24 @@
+// $Id$
+
+#if !defined (CCM_CLIENTCONTAINERINTERCEPTORREGISTRATION_IDL)
+#define CCM_CLIENTCONTAINERINTERCEPTORREGISTRATION_IDL
+
+#include "ciao/CCM_Cookie.idl"
+#include "ciao/CCM_InvalidRegistration.idl"
+
+module Components
+{
+ module ContainerPortableInterceptor
+ {
+ local interface ClientContainerInterceptor;
+
+ local interface ClientContainerInterceptorRegistration
+ {
+ Components::Cookie register_client_interceptor (in ClientContainerInterceptor ci);
+ ClientContainerInterceptor unregister_client_interceptor (in Components::Cookie cookie)
+ raises(InvalidRegistration);
+ };
+ };
+};
+
+#endif /* CCM_CLIENTCONTAINERINTERCEPTORREGISTRATION_IDL */