summaryrefslogtreecommitdiff
path: root/CIAO/tests/DAnCE/Launch-Failures/Component/Launch_Failure.idl
blob: 5c38052f71eb6e402df011238866eb56b133cae7 (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
39
#include <Components.idl>

interface Remote_Interface
{
};

local interface Local_Interface
{
};

enum Failure_Reason
{
  NO_LAUNCH_ERROR,
  ATTRIBUTE_EXCEPTION,
  NIL_FACET_REFERENCE,
  FACET_REFERENCE_EXCEPTION

};

exception Custom_Exception
{
};

component Launch_Failure
{
  provides Remote_Interface remote_out;
  uses Remote_Interface remote_in;

  provides Local_Interface local_out;
  uses Local_Interface local_in;

  attribute Failure_Reason failure_reason;


};

home Launch_Failure_Home manages Launch_Failure
{
};