summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Deployment/Deployment_Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/Deployment/Deployment_Base.idl')
-rw-r--r--CIAO/DAnCE/Deployment/Deployment_Base.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/CIAO/DAnCE/Deployment/Deployment_Base.idl b/CIAO/DAnCE/Deployment/Deployment_Base.idl
deleted file mode 100644
index 0ae4a2748f6..00000000000
--- a/CIAO/DAnCE/Deployment/Deployment_Base.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-//$Id$
-
-#ifndef DEPLOYMENT_BASE_IDL
-#define DEPLOYMENT_BASE_IDL
-
-module Deployment {
-
- struct Property
- {
- string name;
- any value;
- };
- typedef sequence < Property > Properties;
-
- // @@changed element order
- struct Requirement {
- string name;
- string resourceType;
- Properties property;
- };
-
- typedef sequence < Requirement > Requirements;
-
- enum SatisfierPropertyKind {
- Quantity,
- Capacity,
- Minimum,
- Maximum,
- _Attribute,
- Selection
- };
-
- struct SatisfierProperty {
- string name;
- SatisfierPropertyKind kind;
- boolean dynamic;
- any value;
- };
- typedef sequence < SatisfierProperty > SatisfierProperties;
-};
-
-#endif /* DEPLOYMENT_BASE_IDL */