summaryrefslogtreecommitdiff
path: root/trunk/CIAO/ciao/extension/CCM_ExtensionContext.idl
blob: 33fa969b4369730432c90e3e0414f353bfa6de2a (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
25
26
27
28
29
30
31
32
33
34
35
36
37
// $Id$

#if !defined (CCM_EXTENSIONCONTEXT_IDL)
#define CCM_EXTENSIONCONTEXT_IDL

#include "ciao/CCM_Context.idl"
#include "ciao/CCM_ClientContainerInterceptorRegistration.idl"
#include "ciao/CCM_ServerContainerInterceptorRegistration.idl"
#include "ciao/CCM_StubContainerInterceptorRegistration.idl"
#include "ciao/CCM_ServantContainerInterceptorRegistration.idl"
#include "ciao/CCM_CCMException.idl"

module Components
{
  local interface ExtensionContext : CCMContext
  {
    Components::ContainerPortableInterceptor::ClientContainerInterceptorRegistration
      get_client_interceptor_registration ()
        raises (CCMException);
    Components::ContainerPortableInterceptor::ServerContainerInterceptorRegistration
      get_server_interceptor_registration ()
        raises (CCMException);
    Components::ContainerPortableInterceptor::StubContainerInterceptorRegistration
      get_stub_interceptor_registration()
        raises (CCMException);
    Components::ContainerPortableInterceptor::ServantContainerInterceptorRegistration
      get_servant_interceptor_registration()
        raises (CCMException);

    Cookie install_service_reference(in string service_id, in Object objref)
      raises (CCMException);
    Object uninstall_service_reference(in Cookie ck)
      raises (CCMException);
  };
};

#endif /* CCM_EXTENSIONCONTEXT_IDL */