summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Deployment_ApplicationManager.idl
blob: 98fe247f2f9726216d2ef07ff67ea79734c379f6 (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
// $Id$
#ifndef DEPLOYMENT_APPLICATIONMANAGER_IDL
#define DEPLOYMENT_APPLICATIONMANAGER_IDL

#include "ciao/Deployment_Core.idl"
#include "ciao/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
    Application startLaunch (in Properties configProperty,
                             out Connections providedReference,
                             in boolean start)
      raises (ResourceNotAvailable, StartError, InvalidProperty);
    void destroyApplication (in Application app)
      raises (StopError);
  };
};

#endif /* DEPLOYMENT_APPLICATIONMANAGER_IDL */