summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Deployment/Deployment_ApplicationManager.idl
blob: b16aa58f5bc47f1665f8ac420e0d9db4beef7b8d (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
// $Id$
// 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 */