summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Deployment_Application.idl
blob: df03887cf7da5667ddd595b54156b92f4e8e723d (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
// $Id$

#if !defined (DEPLOYMENT_APPLICATION_IDL)
#define DEPLOYMENT_APPLICATION_IDL

#include "ciao/Deployment_Connection.idl"

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

  exception InvalidConnection
  {
    string name;
    string reason;
  };

  interface Application
  {
    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 */