summaryrefslogtreecommitdiff
path: root/ciao_core_2/CIAO/ciao/Deployment.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ciao_core_2/CIAO/ciao/Deployment.idl')
-rw-r--r--ciao_core_2/CIAO/ciao/Deployment.idl52
1 files changed, 0 insertions, 52 deletions
diff --git a/ciao_core_2/CIAO/ciao/Deployment.idl b/ciao_core_2/CIAO/ciao/Deployment.idl
deleted file mode 100644
index 10d34cbedb1..00000000000
--- a/ciao_core_2/CIAO/ciao/Deployment.idl
+++ /dev/null
@@ -1,52 +0,0 @@
-// $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;
- };
-
- // @@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 */