summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Containers/Generic/Generic_Container.idl
blob: cf20b14ad9bad100540a5669fce78ffa71aacf0c (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
/**
 * @file Generic_Container.idl
 * @author Johnny Willemsen
 * $Id$
 * Extends the basic container interface for extension capabilities.
 */

#include "ciao/Containers/Container_Base.idl"
#include "ccm/Generic/CCM_ClientContainerInterceptorRegistration.idl"
#include "ccm/Generic/CCM_ServantContainerInterceptorRegistration.idl"
#include "ccm/Generic/CCM_ServerContainerInterceptorRegistration.idl"
#include "ccm/Generic/CCM_StubContainerInterceptorRegistration.idl"

module CIAO
{
  local interface Generic_Container : Container
  {
    Components::Cookie install_service_reference(in string service_id, in Object objref)
      raises (Components::CCMException);
    Object uninstall_service_reference(in Components::Cookie ck)
      raises (Components::CCMException);

    Components::ContainerPortableInterceptor::ClientContainerInterceptorRegistration
      get_client_interceptor_registration ()
        raises (Components::CCMException);
    Components::ContainerPortableInterceptor::ServerContainerInterceptorRegistration
      get_server_interceptor_registration ()
        raises (Components::CCMException);
    Components::ContainerPortableInterceptor::StubContainerInterceptorRegistration
      get_stub_interceptor_registration()
        raises (Components::CCMException);
    Components::ContainerPortableInterceptor::ServantContainerInterceptorRegistration
      get_servant_interceptor_registration()
        raises (Components::CCMException);
  };
};