Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/HeuristicLab.Hive.Contracts.BusinessObjects1.xsd @ 1007

Last change on this file since 1007 was 1007, checked in by kgrading, 15 years ago

ws update (#437)

File size: 4.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts.BusinessObjects" xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts.BusinessObjects" 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/System" />
5  <xs:complexType name="ClientInfo">
6    <xs:complexContent mixed="false">
7      <xs:extension base="tns:Resource">
8        <xs:sequence>
9          <xs:element minOccurs="0" name="ClientId" type="ser:guid" />
10          <xs:element minOccurs="0" name="ClientInfoId" type="xs:long" />
11          <xs:element minOccurs="0" name="Config" nillable="true" type="tns:ClientConfig" />
12          <xs:element minOccurs="0" name="CpuSpeedPerCore" type="xs:int" />
13          <xs:element minOccurs="0" name="Login" type="xs:dateTime" />
14          <xs:element minOccurs="0" name="Memory" type="xs:int" />
15          <xs:element minOccurs="0" name="NrOfCores" type="xs:int" />
16          <xs:element minOccurs="0" name="State" type="tns:State" />
17        </xs:sequence>
18      </xs:extension>
19    </xs:complexContent>
20  </xs:complexType>
21  <xs:element name="ClientInfo" nillable="true" type="tns:ClientInfo" />
22  <xs:complexType name="Resource">
23    <xs:sequence>
24      <xs:element minOccurs="0" name="Id" type="xs:long" />
25      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
26    </xs:sequence>
27  </xs:complexType>
28  <xs:element name="Resource" nillable="true" type="tns:Resource" />
29  <xs:complexType name="ClientConfig">
30    <xs:sequence>
31      <xs:element minOccurs="0" name="HeartBeatIntervall" type="xs:int" />
32      <xs:element minOccurs="0" name="Id" type="xs:long" />
33      <xs:element minOccurs="0" name="UpDownTimeCalendar" nillable="true" type="xs:string" />
34    </xs:sequence>
35  </xs:complexType>
36  <xs:element name="ClientConfig" nillable="true" type="tns:ClientConfig" />
37  <xs:simpleType name="State">
38    <xs:restriction base="xs:string">
39      <xs:enumeration value="nullState" />
40      <xs:enumeration value="idle" />
41      <xs:enumeration value="calculating" />
42      <xs:enumeration value="offline" />
43      <xs:enumeration value="finished" />
44    </xs:restriction>
45  </xs:simpleType>
46  <xs:element name="State" nillable="true" type="tns:State" />
47  <xs:complexType name="HeartBeatData">
48    <xs:sequence>
49      <xs:element minOccurs="0" name="ClientId" type="ser:guid" />
50      <xs:element minOccurs="0" name="freeCores" type="xs:int" />
51      <xs:element minOccurs="0" name="freeMemory" type="xs:int" />
52      <xs:element minOccurs="0" name="jobProgress" type="xs:int" />
53    </xs:sequence>
54  </xs:complexType>
55  <xs:element name="HeartBeatData" nillable="true" type="tns:HeartBeatData" />
56  <xs:complexType name="Job">
57    <xs:sequence>
58      <xs:element minOccurs="0" name="Client" nillable="true" type="tns:ClientInfo" />
59      <xs:element minOccurs="0" name="Id" type="xs:long" />
60      <xs:element minOccurs="0" name="ParentJob" nillable="true" type="tns:Job" />
61      <xs:element minOccurs="0" name="State" type="tns:State" />
62    </xs:sequence>
63  </xs:complexType>
64  <xs:element name="Job" nillable="true" type="tns:Job" />
65  <xs:complexType name="JobResult">
66    <xs:sequence>
67      <xs:element minOccurs="0" name="Client" nillable="true" type="tns:ClientInfo" />
68      <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Exception" nillable="true" type="q1:Exception" />
69      <xs:element minOccurs="0" name="Id" type="xs:long" />
70      <xs:element minOccurs="0" name="Job" nillable="true" type="tns:Job" />
71      <xs:element minOccurs="0" name="Result" nillable="true" type="xs:base64Binary" />
72    </xs:sequence>
73  </xs:complexType>
74  <xs:element name="JobResult" nillable="true" type="tns:JobResult" />
75</xs:schema>
Note: See TracBrowser for help on using the repository browser.