summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Deployment/Deployment_Data.idl
blob: b452ebe3ad4d4c704849865520151f9f3b45f188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// $Id$

#ifndef DEPLOYMENT_DATA_IDL
#define DEPLOYMENT_DATA_IDL

#include "DAnCE/Deployment/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 */