summaryrefslogtreecommitdiff
path: root/CIAO/tests/DAnCE/Launch-Failures/Component/Launch_Failure.idl
blob: 41369f5828988a8f249fb327bdb793a4b7821917 (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
38
// $Id$

#include <Components.idl>

interface Remote_Interface
{
};

local interface Local_Interface
{
};

enum Failure_Reason
{
  ATTRIBUTE_EXCEPTION,
  NIL_FACET_REFERENCE
};

exception Custom_Exception
{
};

component Launch_Failure
{
  provides Remote_Interface remote_out;
  uses Remote_Interface remote_in;

  provides Local_Interface local_out;
  provides Local_Interface local_in;

  attribute Failure_Reason failure_reason;


};

home Launch_Failure_Home manages Launch_Failure
{
};