summaryrefslogtreecommitdiff
path: root/ciao_core_2/CIAO/ciao/Deployment_Data.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ciao_core_2/CIAO/ciao/Deployment_Data.idl')
-rw-r--r--ciao_core_2/CIAO/ciao/Deployment_Data.idl45
1 files changed, 0 insertions, 45 deletions
diff --git a/ciao_core_2/CIAO/ciao/Deployment_Data.idl b/ciao_core_2/CIAO/ciao/Deployment_Data.idl
deleted file mode 100644
index a8279b2b306..00000000000
--- a/ciao_core_2/CIAO/ciao/Deployment_Data.idl
+++ /dev/null
@@ -1,45 +0,0 @@
-// $Id$
-
-#ifndef DEPLOYMENT_DATA_IDL
-#define DEPLOYMENT_DATA_IDL
-
-#include "ciao/Deployment_DeploymentPlan.idl"
-
-module Deployment {
-
- struct ComponentPackageReference {
- string requiredUUID;
- string requiredName;
-
- // @@changed
- //ComponentInterfaceDescription requiredType;
-
- string requiredType;
- };
-
- typedef sequence < ComponentPackageReference > ComponentPackageReferences;
-
- typedef sequence < ResourceUsageKind > ResourceUsageKinds;
-
- struct ImplementationRequirement {
- ResourceUsageKinds resourceUsage;
- string resourcePort;
- string componentPort;
- // @@ changed: order of name and resourceType
- 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 */