summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Deployment/Deployment.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/Deployment/Deployment.idl')
-rw-r--r--CIAO/DAnCE/Deployment/Deployment.idl52
1 files changed, 52 insertions, 0 deletions
diff --git a/CIAO/DAnCE/Deployment/Deployment.idl b/CIAO/DAnCE/Deployment/Deployment.idl
new file mode 100644
index 00000000000..ee3ea4df782
--- /dev/null
+++ b/CIAO/DAnCE/Deployment/Deployment.idl
@@ -0,0 +1,52 @@
+// $Id$
+
+#ifndef DEPLOYMENT_IDL
+#define DEPLOYMENT_IDL
+
+#include "DAnCE/Deployment/Deployment_Packaging_Data.idl"
+#include "DAnCE/Deployment/Deployment_PlanError.idl"
+
+module Deployment {
+
+ exception InvalidProperty {
+ string name;
+ string reason;
+ };
+
+ // @@added
+ exception InvalidNodeExecParameter {
+ string name;
+ string reason;
+ };
+
+ // @@added
+ exception InvalidComponentExecParameter {
+ string name;
+ string reason;
+ };
+
+ // @@added
+ exception LastConfiguration {
+ };
+
+ exception NoSuchName {
+ };
+
+ exception InvalidReference {
+ };
+
+ /// Below exception types are CIAO specific
+ exception PlanNotExist {
+ };
+
+ /// CIAO specific struct type used for shared component management
+ /// mapping the name of component to its plan_uuid
+ struct ComponentPlan
+ {
+ string name;
+ string plan_uuid;
+ };
+ typedef sequence < ComponentPlan > ComponentPlans;
+};
+
+#endif /* DEPLOYMENT_IDL */