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.idl41
1 files changed, 0 insertions, 41 deletions
diff --git a/CIAO/ciao/Deployment.idl b/CIAO/ciao/Deployment.idl
deleted file mode 100644
index d7c952a8c51..00000000000
--- a/CIAO/ciao/Deployment.idl
+++ /dev/null
@@ -1,41 +0,0 @@
-// $Id$
-
-#ifndef DEPLOYMENT_IDL
-#define DEPLOYMENT_IDL
-
-#include "Deployment_Data.idl"
-#include "Packaging_Data.idl"
-#include "Target_Data.idl"
-#include "ServerResources.idl"
-
-module Deployment {
-
- exception InvalidProperty {
- string name;
- string reason;
- };
-
- exception NoSuchName {
- };
-
- exception LastConfiguration {
- };
-
- 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 */