summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_SessionComponent.idl
blob: f7de21e3f047764162bb19de5fab320ee64743ea (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
// $Id$

#if !defined (CCM_SESSIONCOMPONENT_IDL)
#define CCM_SESSIONCOMPONENT_IDL

#include "ccm/CCM_SessionContext.idl"
#include "ccm/CCM_CCMException.idl"
#include "ccm/CCM_EnterpriseComponent.idl"

// *************** Basic Container interfaces ***************

module Components
{
  typeprefix Components "omg.org";

  local interface SessionComponent : EnterpriseComponent
  {
    void set_session_context ( in SessionContext ctx)
      raises (CCMException);

    void configuration_complete ()
      raises (CCMException);

    void ccm_activate()
      raises (CCMException);

    void ccm_passivate()
      raises (CCMException);

    void ccm_remove ()
      raises (CCMException);
  };
};
#endif /* CCM_SESSIONCOMPONENT_IDL */