summaryrefslogtreecommitdiff
path: root/CIAO/ccm/CCM_ExecutorLocator.idl
blob: e6c2bfb6fe2ec656655532cd2d5395ff79ec3392 (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 8.3.2

#if !defined (CCM_EXECUTORLOCATOR_IDL)
#define CCM_EXECUTORLOCATOR_IDL

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

// *************** Extended Container Interfaces ***************

#if !defined (CCM_LW)

module Components
{
  typeprefix Components "omg.org";

  local interface ExecutorLocator : EnterpriseComponent
  {
    Object obtain_executor (in string name)
      raises (CCMException);

    void release_executor (in Object exc)
      raises (CCMException);

    void configuration_complete()
      raises (InvalidConfiguration);
  };
};
#endif

#endif /* CCM_EXECUTORLOCATOR_IDL */