summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/Deployment/Deployment_Application.idl
blob: 3bd7310571850653051b6f59a3806f85280a4834 (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
// $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"
#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 */