1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Client.Core.ClientConsoleService" xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Client.Core.ClientConsoleService" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
---|
3 | <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
|
---|
4 | <xs:import namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Client.Common" />
|
---|
5 | <xs:complexType name="StatusCommons">
|
---|
6 | <xs:sequence>
|
---|
7 | <xs:element minOccurs="0" name="ClientGuid" type="ser:guid" />
|
---|
8 | <xs:element minOccurs="0" name="ConnectedSince" type="xs:dateTime" />
|
---|
9 | <xs:element minOccurs="0" name="Jobs" nillable="true" type="tns:ArrayOfJobStatus" />
|
---|
10 | <xs:element minOccurs="0" name="JobsAborted" type="xs:int" />
|
---|
11 | <xs:element minOccurs="0" name="JobsDone" type="xs:int" />
|
---|
12 | <xs:element minOccurs="0" name="JobsFetched" type="xs:int" />
|
---|
13 | <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Client.Common" minOccurs="0" name="Status" type="q1:NetworkEnum.WcfConnState" />
|
---|
14 | </xs:sequence>
|
---|
15 | </xs:complexType>
|
---|
16 | <xs:element name="StatusCommons" nillable="true" type="tns:StatusCommons" />
|
---|
17 | <xs:complexType name="ArrayOfJobStatus">
|
---|
18 | <xs:sequence>
|
---|
19 | <xs:element minOccurs="0" maxOccurs="unbounded" name="JobStatus" nillable="true" type="tns:JobStatus" />
|
---|
20 | </xs:sequence>
|
---|
21 | </xs:complexType>
|
---|
22 | <xs:element name="ArrayOfJobStatus" nillable="true" type="tns:ArrayOfJobStatus" />
|
---|
23 | <xs:complexType name="JobStatus">
|
---|
24 | <xs:sequence>
|
---|
25 | <xs:element minOccurs="0" name="JobId" type="ser:guid" />
|
---|
26 | <xs:element minOccurs="0" name="Progress" type="xs:double" />
|
---|
27 | <xs:element minOccurs="0" name="Since" type="xs:dateTime" />
|
---|
28 | </xs:sequence>
|
---|
29 | </xs:complexType>
|
---|
30 | <xs:element name="JobStatus" nillable="true" type="tns:JobStatus" />
|
---|
31 | <xs:complexType name="ConnectionContainer">
|
---|
32 | <xs:sequence>
|
---|
33 | <xs:element minOccurs="0" name="IPAdress" nillable="true" type="xs:string" />
|
---|
34 | <xs:element minOccurs="0" name="Port" type="xs:int" />
|
---|
35 | </xs:sequence>
|
---|
36 | </xs:complexType>
|
---|
37 | <xs:element name="ConnectionContainer" nillable="true" type="tns:ConnectionContainer" />
|
---|
38 | </xs:schema> |
---|