summaryrefslogtreecommitdiff
path: root/TAO/CIAO/ciao/Deployment.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/ciao/Deployment.idl')
-rw-r--r--TAO/CIAO/ciao/Deployment.idl61
1 files changed, 0 insertions, 61 deletions
diff --git a/TAO/CIAO/ciao/Deployment.idl b/TAO/CIAO/ciao/Deployment.idl
deleted file mode 100644
index b5515f5fe59..00000000000
--- a/TAO/CIAO/ciao/Deployment.idl
+++ /dev/null
@@ -1,61 +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;
- };
- /**
- * @struct Sched_Params
- * @brief Carries Scheduling Params
- * @description CIAO specific structure to carry the scheduling params
- * to set the process, required by RACE
- */
-
- struct Sched_Params
- {
- long policy_;
- long priority_;
- long scope_;
- long msec_;
- };
-
- typedef sequence < ComponentPlan > ComponentPlans;
-
- typedef sequence < Application > Applications;
-
- interface Logger {
- };
-};
-
-#endif /* DEPLOYMENT_IDL */