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

#ifndef DEPLOYMENT_APPLICATION_IDL
#define DEPLOYMENT_APPLICATION_IDL

#include "DAnCE/Deployment/Deployment_Connection.idl"
#include "DAnCE/Deployment/Deployment_StartError.idl"
#include "DAnCE/Deployment/Deployment_StopError.idl"

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

  interface Application {
    void finishLaunch (in Connections providedReference, in boolean start)
      raises (StartError, InvalidConnection);

    void start ()
      raises (StartError);
  };

  typedef sequence < Application > Applications;
};

#endif /* DEPLOYMENT_APPLICATION_IDL */