summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Deployment_Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Deployment_Base.idl')
-rw-r--r--CIAO/ciao/Deployment_Base.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/CIAO/ciao/Deployment_Base.idl b/CIAO/ciao/Deployment_Base.idl
deleted file mode 100644
index 5b9618dfab2..00000000000
--- a/CIAO/ciao/Deployment_Base.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-//$Id$
-
-#ifndef DEPLOYMENT_BASE_IDL
-#define DEPLOYMENT_BASE_IDL
-
-#include <orb.idl>
-
-module Deployment {
-
- struct Property
- {
- string name;
- any value;
- };
- typedef sequence < Property > Properties;
-
- struct Requirement {
- string resourceType;
- string name;
- 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 */