summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Deployment/Deployment_Application.idl
blob: 3bc5812b1479fca704c75acad69bacd499b08b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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"
#include "dance/Deployment/Deployment_InvalidConnection.idl"

module Deployment
{
  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 */