summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Deployment/Deployment_Data.idl
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/Deployment/Deployment_Data.idl')
-rw-r--r--DAnCE/dance/Deployment/Deployment_Data.idl39
1 files changed, 0 insertions, 39 deletions
diff --git a/DAnCE/dance/Deployment/Deployment_Data.idl b/DAnCE/dance/Deployment/Deployment_Data.idl
deleted file mode 100644
index ff8a5728031..00000000000
--- a/DAnCE/dance/Deployment/Deployment_Data.idl
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef DEPLOYMENT_DATA_IDL
-#define DEPLOYMENT_DATA_IDL
-
-#include "dance/Deployment/Deployment_DeploymentPlan.idl"
-
-module Deployment {
- struct ComponentPackageReference {
- string requiredUUID;
- string requiredName;
- ComponentInterfaceDescription requiredType;
- };
-
- typedef sequence < ComponentPackageReference > ComponentPackageReferences;
-
- typedef sequence < ResourceUsageKind > ResourceUsageKinds;
-
- struct ImplementationRequirement {
- ResourceUsageKinds resourceUsage;
- string resourcePort;
- string componentPort;
- string name;
- string resourceType;
- Properties property;
- };
-
- typedef sequence < ImplementationRequirement > ImplementationRequirements;
-
- struct Capability {
- string name;
- CORBA::StringSeq resourceType;
- SatisfierProperties property;
- };
-
- typedef sequence < Capability > Capabilities;
-};
-
-#endif /* DEPLOYMENT_DATA_IDL */
-
-