summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Deployment/Deployment_ApplicationManager.idl
blob: 8450e76dab5bed8ea0b8bd3eb45e54bfaa1de530 (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
// Compliant with OMG 06-04-01 section 15

#ifndef DEPLOYMENT_APPLICATIONMANAGER_IDL
#define DEPLOYMENT_APPLICATIONMANAGER_IDL

#include "dance/Deployment/Deployment.idl"
#include "dance/Deployment/Deployment_InvalidProperty.idl"
#include "dance/Deployment/Deployment_Application.idl"
#include "dance/Deployment/Deployment_Connection.idl"
#include "dance/Deployment/Deployment_ResourceNotAvailable.idl"
#include "dance/Deployment/Deployment_InvalidNodeExecParameter.idl"
#include "dance/Deployment/Deployment_InvalidComponentExecParameter.idl"

module Deployment {

  interface ApplicationManager {
    Application startLaunch (in Properties configProperty,
                             out Connections providedReference)
      raises (ResourceNotAvailable,
              StartError,
              InvalidProperty,
              InvalidNodeExecParameter,
              InvalidComponentExecParameter);

    void destroyApplication (in Application app)
      raises (StopError);
  };
};

#endif /* DEPLOYMENT_APPLICATIONMANAGER_IDL */