summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl
blob: c7f5a1957d166b0f6e0409e3a103a5a93cab5fe1 (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
// $Id$
#ifndef DEPLOYMENT_APPLICATIONMANAGER_IDL
#define DEPLOYMENT_APPLICATIONMANAGER_IDL

#include "DAnCE/Deployment/Deployment_Core.idl"
#include "DAnCE/Deployment/Deployment.idl"

module Deployment {
  exception ResourceNotAvailable {
    string name;
    string resourceType;
    string propertyName;
    string elementName;
    string resourceName;
  };

  interface ApplicationManager {
    /// @todo Spec mentions another few exceptions in the raises cluase
    // @@changed
    Application startLaunch (in Properties configProperty,
                             out Connections providedReference,
                             in boolean start)
      raises (ResourceNotAvailable, StartError, InvalidProperty,
              InvalidNodeExecParameter, InvalidComponentExecParameter);
    void destroyApplication (in Application app)
      raises (StopError);
  };
};

#endif /* DEPLOYMENT_APPLICATIONMANAGER_IDL */