summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_Home.idl
blob: 6518a8e484d18087e2cbb0a4926e98f8563a9479 (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
// $Id$
/// Compliant with OMG 06-04-01 Section 6.7.6

#if !defined (CCM_HOME_IDL)
#define CCM_HOME_IDL

#include "tao/IFR_Client/IFR_Base.pidl"
#include "ccm/CCM_Exceptions.idl"

module Components
{
  typeprefix Components "omg.org";

  exception DuplicateKeyValue {};
  exception InvalidKey {};
  exception UnknownKeyValue {};

  interface CCMObject;

  interface CCMHome
  {
#if !defined (CCM_LW)
    CORBA::IRObject get_component_def ();
#endif
#if !defined (CCM_LW)
    CORBA::IRObject get_home_def ();
#endif
    void remove_component (in CCMObject comp)
      raises (RemoveFailure);
  };
};

#endif /* CCM_HOME_IDL */