Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment.Test/Service References/AdminService/HeuristicLab.Services.Deployment1.xsd @ 3006

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

Implemented deployment service on servdev.heuristiclab.com and changed all service references and configurations to point to the service address. Improved GUI of installation manager. Implemented user name authentication and authorization for the deployment service. #860 (Deployment server for plugin installation from web locations)

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