summaryrefslogtreecommitdiff
path: root/TAO/CIAO/docs/schema/cdp.xsd
blob: 6a667d8d4d9c5f1d17d835db3c1f618f3d5837c9 (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
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://www.w3.org/2001/XMLSchema XMLSchema.xsd"
            xmlns:Deployment="http://www.omg.org/Deployment"
            targetNamespace="http://www.omg.org/Deployment">

<xsd:include schemaLocation="ccd.xsd" />

<xsd:complexType name="DeploymentPlan">
   <xsd:sequence>
     <xsd:element name="label" type="xsd:string"/>
      <xsd:element name="UUID" type="xsd:string"/>     
      <xsd:element name="realizes" type="Deployment:ComponentInterfaceDescription" minOccurs="0"/>
      <xsd:element name="implementation" type="Deployment:MonolithicDeploymentDescription" maxOccurs="unbounded"/>
      <xsd:element name="instance" type="Deployment:InstanceDeploymentDescription" maxOccurs="unbounded"/>
      <xsd:element name="connection" type="Deployment:PlanConnectionDescription" maxOccurs="unbounded"/>

<!-- potentially recursive, not used
      <xsd:element name="externalProperty" type="Deployment:PlanPropertyMapping"/>
-->

      <xsd:element name="dependsOn" type="Deployment:ImplementationDependency" minOccurs="0" maxOccurs="unbounded"/>
      <xsd:element name="artifact" type="Deployment:ArtifactDeploymentDescription" maxOccurs="unbounded"/>
      <xsd:element name="infoProperty" type="Deployment:Property" minOccurs="0"/>
    </xsd:sequence>
</xsd:complexType>

</xsd:schema>