Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment.Test/Service References/UpdateService/HeuristicLab.Services.Deployment.DataAccess.xsd @ 2771

Last change on this file since 2771 was 2771, checked in by gkronber, 14 years ago

Implemented and tested rudimentary WCF service interface on top of the Linq2Sql data access layer. #860

File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment.DataAccess" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment.DataAccess" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3  <xs:import namespace="http://schemas.datacontract.org/2004/07/System" />
4  <xs:complexType name="PluginDescription">
5    <xs:sequence>
6      <xs:element minOccurs="0" name="Dependencies" nillable="true" type="tns:ArrayOfPluginDescription" />
7      <xs:element minOccurs="0" name="Id" type="xs:long" />
8      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
9      <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Version" nillable="true" type="q1:Version" />
10    </xs:sequence>
11  </xs:complexType>
12  <xs:element name="PluginDescription" nillable="true" type="tns:PluginDescription" />
13  <xs:complexType name="ArrayOfPluginDescription">
14    <xs:sequence>
15      <xs:element minOccurs="0" maxOccurs="unbounded" name="PluginDescription" nillable="true" type="tns:PluginDescription" />
16    </xs:sequence>
17  </xs:complexType>
18  <xs:element name="ArrayOfPluginDescription" nillable="true" type="tns:ArrayOfPluginDescription" />
19  <xs:complexType name="ArrayOfProductDescription">
20    <xs:sequence>
21      <xs:element minOccurs="0" maxOccurs="unbounded" name="ProductDescription" nillable="true" type="tns:ProductDescription" />
22    </xs:sequence>
23  </xs:complexType>
24  <xs:element name="ArrayOfProductDescription" nillable="true" type="tns:ArrayOfProductDescription" />
25  <xs:complexType name="ProductDescription">
26    <xs:sequence>
27      <xs:element minOccurs="0" name="Id" type="xs:long" />
28      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
29      <xs:element minOccurs="0" name="Plugins" nillable="true" type="tns:ArrayOfPluginDescription" />
30      <xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Version" nillable="true" type="q2:Version" />
31    </xs:sequence>
32  </xs:complexType>
33  <xs:element name="ProductDescription" nillable="true" type="tns:ProductDescription" />
34</xs:schema>
Note: See TracBrowser for help on using the repository browser.