summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl')
-rw-r--r--CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl b/CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl
new file mode 100644
index 00000000000..c7f5a1957d1
--- /dev/null
+++ b/CIAO/DAnCE/Deployment/Deployment_ApplicationManager.idl
@@ -0,0 +1,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 */