summaryrefslogtreecommitdiff
path: root/trunk/CIAO/ciao/extension/CCM_ServerContainerInterceptorRegistration.idl
blob: b4a3dafac26d9a9c408b833c9aeabc1ae5a39edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// $Id$

#if !defined (CCM_SERVERCONTAINERINTERCEPTORREGISTRATION_IDL)
#define CCM_SERVERCONTAINERINTERCEPTORREGISTRATION_IDL

#include "ciao/CCM_Cookie.idl"
#include "ciao/CCM_InvalidRegistration.idl"

module Components
{
  module ContainerPortableInterceptor
  {
    local interface ServerContainerInterceptor;

    local interface ServerContainerInterceptorRegistration
    {
      Components::Cookie register_server_interceptor (in ServerContainerInterceptor ci);
      ServerContainerInterceptor unregister_client_interceptor (in Components::Cookie cookie)
        raises(InvalidRegistration);
    };
  };
};

#endif /* CCM_SERVERCONTAINERINTERCEPTORREGISTRATION_IDL */