summaryrefslogtreecommitdiff
path: root/trunk/CIAO/DAnCE/Deployment/Deployment_Application.idl
blob: e045d0ca8495b5f08d6a3c51d84e16f49733350c (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
// $Id$

#if !defined (DEPLOYMENT_APPLICATION_IDL)
#define DEPLOYMENT_APPLICATION_IDL

#include "DAnCE/Deployment/Deployment_Connection.idl"

module Deployment
{
  exception StartError
  {
    string name;
    string reason;
  };

  exception InvalidConnection
  {
    string name;
    string reason;
  };

  interface Application
  {
    // @@changed
    //     void finishLaunch (in Connections providedReference,
    //                        in boolean start)
    //       raises (StartError, InvalidConnection);
    
    void finishLaunch (in Connections providedReference,
                       in boolean start,
                       in boolean is_ReDAC)
      raises (StartError, InvalidConnection);
    void start ()
      raises (StartError);
  };
  typedef sequence < Application > Applications;
};

#endif /* DEPLOYMENT_APPLICATION_IDL */