summaryrefslogtreecommitdiff
path: root/trunk/CIAO/ciao/extension/CCM_ServantContainerInterceptorRegistration.idl
blob: 39448de9a583a6655d5228983681772e764a95ab (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_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 */