summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Deployment.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Deployment.idl')
-rw-r--r--CIAO/ciao/Deployment.idl36
1 files changed, 36 insertions, 0 deletions
diff --git a/CIAO/ciao/Deployment.idl b/CIAO/ciao/Deployment.idl
new file mode 100644
index 00000000000..793c44fc853
--- /dev/null
+++ b/CIAO/ciao/Deployment.idl
@@ -0,0 +1,36 @@
+// $Id$
+
+#ifndef DEPLOYMENT_IDL
+#define DEPLOYMENT_IDL
+
+#include "ciao/Deployment_Packaging_Data.idl"
+#include "ciao/Deployment_Target_Data.idl"
+
+module Deployment {
+
+ exception InvalidProperty {
+ string name;
+ string reason;
+ };
+
+ 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 */