[8055] | 1 | //------------------------------------------------------------------------------
|
---|
| 2 | // <auto-generated>
|
---|
| 3 | // This code was generated by a tool.
|
---|
[14738] | 4 | // Runtime Version:4.0.30319.42000
|
---|
[8055] | 5 | //
|
---|
| 6 | // Changes to this file may cause incorrect behavior and will be lost if
|
---|
| 7 | // the code is regenerated.
|
---|
| 8 | // </auto-generated>
|
---|
| 9 | //------------------------------------------------------------------------------
|
---|
| 10 |
|
---|
[14738] | 11 | namespace HeuristicLab.Clients.OKB.Administration
|
---|
| 12 | {
|
---|
| 13 | using System.Runtime.Serialization;
|
---|
| 14 |
|
---|
| 15 |
|
---|
| 16 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 17 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 18 | [System.Runtime.Serialization.DataContractAttribute(Name="OKBItem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 19 | "DataTransfer")]
|
---|
| 20 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.NamedOKBItem))]
|
---|
| 21 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.AlgorithmClass))]
|
---|
| 22 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.Algorithm))]
|
---|
| 23 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.ProblemClass))]
|
---|
| 24 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.Problem))]
|
---|
| 25 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.Platform))]
|
---|
| 26 | public partial class OKBItem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
|
---|
| 27 | {
|
---|
| 28 |
|
---|
| 29 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
|
---|
| 30 |
|
---|
| 31 | private long IdField;
|
---|
| 32 |
|
---|
| 33 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData
|
---|
| 34 | {
|
---|
| 35 | get
|
---|
| 36 | {
|
---|
| 37 | return this.extensionDataField;
|
---|
| 38 | }
|
---|
| 39 | set
|
---|
| 40 | {
|
---|
| 41 | this.extensionDataField = value;
|
---|
| 42 | }
|
---|
[8055] | 43 | }
|
---|
[14738] | 44 |
|
---|
| 45 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 46 | public long Id
|
---|
| 47 | {
|
---|
| 48 | get
|
---|
| 49 | {
|
---|
| 50 | return this.IdField;
|
---|
| 51 | }
|
---|
| 52 | set
|
---|
| 53 | {
|
---|
| 54 | if ((this.IdField.Equals(value) != true))
|
---|
| 55 | {
|
---|
| 56 | this.IdField = value;
|
---|
| 57 | this.RaisePropertyChanged("Id");
|
---|
| 58 | }
|
---|
| 59 | }
|
---|
[8055] | 60 | }
|
---|
[14738] | 61 |
|
---|
| 62 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
---|
[8055] | 63 | }
|
---|
[14738] | 64 |
|
---|
| 65 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 66 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 67 | [System.Runtime.Serialization.DataContractAttribute(Name="NamedOKBItem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 68 | "DataTransfer")]
|
---|
| 69 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.AlgorithmClass))]
|
---|
| 70 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.Algorithm))]
|
---|
| 71 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.ProblemClass))]
|
---|
| 72 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.Problem))]
|
---|
| 73 | [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.Administration.Platform))]
|
---|
| 74 | public partial class NamedOKBItem : HeuristicLab.Clients.OKB.Administration.OKBItem
|
---|
| 75 | {
|
---|
| 76 |
|
---|
| 77 | private string DescriptionField;
|
---|
| 78 |
|
---|
| 79 | private string NameField;
|
---|
| 80 |
|
---|
| 81 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 82 | public string Description
|
---|
| 83 | {
|
---|
| 84 | get
|
---|
| 85 | {
|
---|
| 86 | return this.DescriptionField;
|
---|
| 87 | }
|
---|
| 88 | set
|
---|
| 89 | {
|
---|
| 90 | if ((object.ReferenceEquals(this.DescriptionField, value) != true))
|
---|
| 91 | {
|
---|
| 92 | this.DescriptionField = value;
|
---|
| 93 | this.RaisePropertyChanged("Description");
|
---|
| 94 | }
|
---|
| 95 | }
|
---|
[8055] | 96 | }
|
---|
[14738] | 97 |
|
---|
| 98 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 99 | public string Name
|
---|
| 100 | {
|
---|
| 101 | get
|
---|
| 102 | {
|
---|
| 103 | return this.NameField;
|
---|
| 104 | }
|
---|
| 105 | set
|
---|
| 106 | {
|
---|
| 107 | if ((object.ReferenceEquals(this.NameField, value) != true))
|
---|
| 108 | {
|
---|
| 109 | this.NameField = value;
|
---|
| 110 | this.RaisePropertyChanged("Name");
|
---|
| 111 | }
|
---|
| 112 | }
|
---|
[8055] | 113 | }
|
---|
| 114 | }
|
---|
[14738] | 115 |
|
---|
| 116 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 117 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 118 | [System.Runtime.Serialization.DataContractAttribute(Name="AlgorithmClass", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 119 | "DataTransfer")]
|
---|
| 120 | public partial class AlgorithmClass : HeuristicLab.Clients.OKB.Administration.NamedOKBItem
|
---|
| 121 | {
|
---|
[8055] | 122 | }
|
---|
[14738] | 123 |
|
---|
| 124 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 125 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 126 | [System.Runtime.Serialization.DataContractAttribute(Name="Algorithm", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 127 | "DataTransfer")]
|
---|
| 128 | public partial class Algorithm : HeuristicLab.Clients.OKB.Administration.NamedOKBItem
|
---|
| 129 | {
|
---|
| 130 |
|
---|
| 131 | private long AlgorithmClassIdField;
|
---|
| 132 |
|
---|
| 133 | private string DataTypeNameField;
|
---|
| 134 |
|
---|
| 135 | private string DataTypeTypeNameField;
|
---|
| 136 |
|
---|
| 137 | private long PlatformIdField;
|
---|
| 138 |
|
---|
| 139 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 140 | public long AlgorithmClassId
|
---|
| 141 | {
|
---|
| 142 | get
|
---|
| 143 | {
|
---|
| 144 | return this.AlgorithmClassIdField;
|
---|
| 145 | }
|
---|
| 146 | set
|
---|
| 147 | {
|
---|
| 148 | if ((this.AlgorithmClassIdField.Equals(value) != true))
|
---|
| 149 | {
|
---|
| 150 | this.AlgorithmClassIdField = value;
|
---|
| 151 | this.RaisePropertyChanged("AlgorithmClassId");
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
[8055] | 154 | }
|
---|
[14738] | 155 |
|
---|
| 156 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 157 | public string DataTypeName
|
---|
| 158 | {
|
---|
| 159 | get
|
---|
| 160 | {
|
---|
| 161 | return this.DataTypeNameField;
|
---|
| 162 | }
|
---|
| 163 | set
|
---|
| 164 | {
|
---|
| 165 | if ((object.ReferenceEquals(this.DataTypeNameField, value) != true))
|
---|
| 166 | {
|
---|
| 167 | this.DataTypeNameField = value;
|
---|
| 168 | this.RaisePropertyChanged("DataTypeName");
|
---|
| 169 | }
|
---|
| 170 | }
|
---|
[8055] | 171 | }
|
---|
[14738] | 172 |
|
---|
| 173 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 174 | public string DataTypeTypeName
|
---|
| 175 | {
|
---|
| 176 | get
|
---|
| 177 | {
|
---|
| 178 | return this.DataTypeTypeNameField;
|
---|
| 179 | }
|
---|
| 180 | set
|
---|
| 181 | {
|
---|
| 182 | if ((object.ReferenceEquals(this.DataTypeTypeNameField, value) != true))
|
---|
| 183 | {
|
---|
| 184 | this.DataTypeTypeNameField = value;
|
---|
| 185 | this.RaisePropertyChanged("DataTypeTypeName");
|
---|
| 186 | }
|
---|
| 187 | }
|
---|
[8055] | 188 | }
|
---|
[14738] | 189 |
|
---|
| 190 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 191 | public long PlatformId
|
---|
| 192 | {
|
---|
| 193 | get
|
---|
| 194 | {
|
---|
| 195 | return this.PlatformIdField;
|
---|
| 196 | }
|
---|
| 197 | set
|
---|
| 198 | {
|
---|
| 199 | if ((this.PlatformIdField.Equals(value) != true))
|
---|
| 200 | {
|
---|
| 201 | this.PlatformIdField = value;
|
---|
| 202 | this.RaisePropertyChanged("PlatformId");
|
---|
| 203 | }
|
---|
| 204 | }
|
---|
[8055] | 205 | }
|
---|
| 206 | }
|
---|
[14738] | 207 |
|
---|
| 208 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 209 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 210 | [System.Runtime.Serialization.DataContractAttribute(Name="ProblemClass", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 211 | "DataTransfer")]
|
---|
| 212 | public partial class ProblemClass : HeuristicLab.Clients.OKB.Administration.NamedOKBItem
|
---|
| 213 | {
|
---|
[8055] | 214 | }
|
---|
[14738] | 215 |
|
---|
| 216 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 217 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 218 | [System.Runtime.Serialization.DataContractAttribute(Name="Problem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 219 | "DataTransfer")]
|
---|
| 220 | public partial class Problem : HeuristicLab.Clients.OKB.Administration.NamedOKBItem
|
---|
| 221 | {
|
---|
| 222 |
|
---|
| 223 | private string DataTypeNameField;
|
---|
| 224 |
|
---|
| 225 | private string DataTypeTypeNameField;
|
---|
| 226 |
|
---|
| 227 | private long PlatformIdField;
|
---|
| 228 |
|
---|
| 229 | private long ProblemClassIdField;
|
---|
| 230 |
|
---|
| 231 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 232 | public string DataTypeName
|
---|
| 233 | {
|
---|
| 234 | get
|
---|
| 235 | {
|
---|
| 236 | return this.DataTypeNameField;
|
---|
| 237 | }
|
---|
| 238 | set
|
---|
| 239 | {
|
---|
| 240 | if ((object.ReferenceEquals(this.DataTypeNameField, value) != true))
|
---|
| 241 | {
|
---|
| 242 | this.DataTypeNameField = value;
|
---|
| 243 | this.RaisePropertyChanged("DataTypeName");
|
---|
| 244 | }
|
---|
| 245 | }
|
---|
[8055] | 246 | }
|
---|
[14738] | 247 |
|
---|
| 248 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 249 | public string DataTypeTypeName
|
---|
| 250 | {
|
---|
| 251 | get
|
---|
| 252 | {
|
---|
| 253 | return this.DataTypeTypeNameField;
|
---|
| 254 | }
|
---|
| 255 | set
|
---|
| 256 | {
|
---|
| 257 | if ((object.ReferenceEquals(this.DataTypeTypeNameField, value) != true))
|
---|
| 258 | {
|
---|
| 259 | this.DataTypeTypeNameField = value;
|
---|
| 260 | this.RaisePropertyChanged("DataTypeTypeName");
|
---|
| 261 | }
|
---|
| 262 | }
|
---|
| 263 | }
|
---|
| 264 |
|
---|
| 265 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 266 | public long PlatformId
|
---|
| 267 | {
|
---|
| 268 | get
|
---|
| 269 | {
|
---|
| 270 | return this.PlatformIdField;
|
---|
| 271 | }
|
---|
| 272 | set
|
---|
| 273 | {
|
---|
| 274 | if ((this.PlatformIdField.Equals(value) != true))
|
---|
| 275 | {
|
---|
| 276 | this.PlatformIdField = value;
|
---|
| 277 | this.RaisePropertyChanged("PlatformId");
|
---|
| 278 | }
|
---|
| 279 | }
|
---|
| 280 | }
|
---|
| 281 |
|
---|
| 282 | [System.Runtime.Serialization.DataMemberAttribute()]
|
---|
| 283 | public long ProblemClassId
|
---|
| 284 | {
|
---|
| 285 | get
|
---|
| 286 | {
|
---|
| 287 | return this.ProblemClassIdField;
|
---|
| 288 | }
|
---|
| 289 | set
|
---|
| 290 | {
|
---|
| 291 | if ((this.ProblemClassIdField.Equals(value) != true))
|
---|
| 292 | {
|
---|
| 293 | this.ProblemClassIdField = value;
|
---|
| 294 | this.RaisePropertyChanged("ProblemClassId");
|
---|
| 295 | }
|
---|
| 296 | }
|
---|
| 297 | }
|
---|
[8055] | 298 | }
|
---|
[14738] | 299 |
|
---|
| 300 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 301 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
|
---|
| 302 | [System.Runtime.Serialization.DataContractAttribute(Name="Platform", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration." +
|
---|
| 303 | "DataTransfer")]
|
---|
| 304 | public partial class Platform : HeuristicLab.Clients.OKB.Administration.NamedOKBItem
|
---|
| 305 | {
|
---|
[8055] | 306 | }
|
---|
[14738] | 307 |
|
---|
| 308 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
---|
| 309 | [System.ServiceModel.ServiceContractAttribute(ConfigurationName="HeuristicLab.Clients.OKB.Administration.IAdministrationService")]
|
---|
| 310 | public interface IAdministrationService
|
---|
| 311 | {
|
---|
| 312 |
|
---|
| 313 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetPlatform", ReplyAction="http://tempuri.org/IAdministrationService/GetPlatformResponse")]
|
---|
| 314 | HeuristicLab.Clients.OKB.Administration.Platform GetPlatform(long id);
|
---|
| 315 |
|
---|
| 316 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetPlatforms", ReplyAction="http://tempuri.org/IAdministrationService/GetPlatformsResponse")]
|
---|
| 317 | System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.Platform> GetPlatforms();
|
---|
| 318 |
|
---|
| 319 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/AddPlatform", ReplyAction="http://tempuri.org/IAdministrationService/AddPlatformResponse")]
|
---|
| 320 | long AddPlatform(HeuristicLab.Clients.OKB.Administration.Platform dto);
|
---|
| 321 |
|
---|
| 322 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdatePlatform", ReplyAction="http://tempuri.org/IAdministrationService/UpdatePlatformResponse")]
|
---|
| 323 | void UpdatePlatform(HeuristicLab.Clients.OKB.Administration.Platform dto);
|
---|
| 324 |
|
---|
| 325 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/DeletePlatform", ReplyAction="http://tempuri.org/IAdministrationService/DeletePlatformResponse")]
|
---|
| 326 | void DeletePlatform(long id);
|
---|
| 327 |
|
---|
| 328 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetAlgorithmClass", ReplyAction="http://tempuri.org/IAdministrationService/GetAlgorithmClassResponse")]
|
---|
| 329 | HeuristicLab.Clients.OKB.Administration.AlgorithmClass GetAlgorithmClass(long id);
|
---|
| 330 |
|
---|
| 331 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetAlgorithmClasses", ReplyAction="http://tempuri.org/IAdministrationService/GetAlgorithmClassesResponse")]
|
---|
| 332 | System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.AlgorithmClass> GetAlgorithmClasses();
|
---|
| 333 |
|
---|
| 334 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/AddAlgorithmClass", ReplyAction="http://tempuri.org/IAdministrationService/AddAlgorithmClassResponse")]
|
---|
| 335 | long AddAlgorithmClass(HeuristicLab.Clients.OKB.Administration.AlgorithmClass dto);
|
---|
| 336 |
|
---|
| 337 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateAlgorithmClass", ReplyAction="http://tempuri.org/IAdministrationService/UpdateAlgorithmClassResponse")]
|
---|
| 338 | void UpdateAlgorithmClass(HeuristicLab.Clients.OKB.Administration.AlgorithmClass dto);
|
---|
| 339 |
|
---|
| 340 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/DeleteAlgorithmClass", ReplyAction="http://tempuri.org/IAdministrationService/DeleteAlgorithmClassResponse")]
|
---|
| 341 | void DeleteAlgorithmClass(long id);
|
---|
| 342 |
|
---|
| 343 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetAlgorithm", ReplyAction="http://tempuri.org/IAdministrationService/GetAlgorithmResponse")]
|
---|
| 344 | HeuristicLab.Clients.OKB.Administration.Algorithm GetAlgorithm(long id);
|
---|
| 345 |
|
---|
| 346 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetAlgorithms", ReplyAction="http://tempuri.org/IAdministrationService/GetAlgorithmsResponse")]
|
---|
| 347 | System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.Algorithm> GetAlgorithms();
|
---|
| 348 |
|
---|
| 349 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/AddAlgorithm", ReplyAction="http://tempuri.org/IAdministrationService/AddAlgorithmResponse")]
|
---|
| 350 | long AddAlgorithm(HeuristicLab.Clients.OKB.Administration.Algorithm dto);
|
---|
| 351 |
|
---|
| 352 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateAlgorithm", ReplyAction="http://tempuri.org/IAdministrationService/UpdateAlgorithmResponse")]
|
---|
| 353 | void UpdateAlgorithm(HeuristicLab.Clients.OKB.Administration.Algorithm dto);
|
---|
| 354 |
|
---|
| 355 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/DeleteAlgorithm", ReplyAction="http://tempuri.org/IAdministrationService/DeleteAlgorithmResponse")]
|
---|
| 356 | void DeleteAlgorithm(long id);
|
---|
| 357 |
|
---|
| 358 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetAlgorithmUsers", ReplyAction="http://tempuri.org/IAdministrationService/GetAlgorithmUsersResponse")]
|
---|
| 359 | System.Collections.Generic.List<System.Guid> GetAlgorithmUsers(long algorithmId);
|
---|
| 360 |
|
---|
| 361 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateAlgorithmUsers", ReplyAction="http://tempuri.org/IAdministrationService/UpdateAlgorithmUsersResponse")]
|
---|
| 362 | void UpdateAlgorithmUsers(long algorithmId, System.Collections.Generic.List<System.Guid> users);
|
---|
| 363 |
|
---|
| 364 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetAlgorithmData", ReplyAction="http://tempuri.org/IAdministrationService/GetAlgorithmDataResponse")]
|
---|
| 365 | byte[] GetAlgorithmData(long algorithmId);
|
---|
| 366 |
|
---|
| 367 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateAlgorithmData", ReplyAction="http://tempuri.org/IAdministrationService/UpdateAlgorithmDataResponse")]
|
---|
| 368 | void UpdateAlgorithmData(long algorithmId, byte[] data);
|
---|
| 369 |
|
---|
| 370 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetProblemClass", ReplyAction="http://tempuri.org/IAdministrationService/GetProblemClassResponse")]
|
---|
| 371 | HeuristicLab.Clients.OKB.Administration.ProblemClass GetProblemClass(long id);
|
---|
| 372 |
|
---|
| 373 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetProblemClasses", ReplyAction="http://tempuri.org/IAdministrationService/GetProblemClassesResponse")]
|
---|
| 374 | System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.ProblemClass> GetProblemClasses();
|
---|
| 375 |
|
---|
| 376 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/AddProblemClass", ReplyAction="http://tempuri.org/IAdministrationService/AddProblemClassResponse")]
|
---|
| 377 | long AddProblemClass(HeuristicLab.Clients.OKB.Administration.ProblemClass dto);
|
---|
| 378 |
|
---|
| 379 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateProblemClass", ReplyAction="http://tempuri.org/IAdministrationService/UpdateProblemClassResponse")]
|
---|
| 380 | void UpdateProblemClass(HeuristicLab.Clients.OKB.Administration.ProblemClass dto);
|
---|
| 381 |
|
---|
| 382 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/DeleteProblemClass", ReplyAction="http://tempuri.org/IAdministrationService/DeleteProblemClassResponse")]
|
---|
| 383 | void DeleteProblemClass(long id);
|
---|
| 384 |
|
---|
| 385 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetProblem", ReplyAction="http://tempuri.org/IAdministrationService/GetProblemResponse")]
|
---|
| 386 | HeuristicLab.Clients.OKB.Administration.Problem GetProblem(long id);
|
---|
| 387 |
|
---|
| 388 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetProblems", ReplyAction="http://tempuri.org/IAdministrationService/GetProblemsResponse")]
|
---|
| 389 | System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.Problem> GetProblems();
|
---|
| 390 |
|
---|
| 391 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/AddProblem", ReplyAction="http://tempuri.org/IAdministrationService/AddProblemResponse")]
|
---|
| 392 | long AddProblem(HeuristicLab.Clients.OKB.Administration.Problem dto);
|
---|
| 393 |
|
---|
| 394 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateProblem", ReplyAction="http://tempuri.org/IAdministrationService/UpdateProblemResponse")]
|
---|
| 395 | void UpdateProblem(HeuristicLab.Clients.OKB.Administration.Problem dto);
|
---|
| 396 |
|
---|
| 397 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/DeleteProblem", ReplyAction="http://tempuri.org/IAdministrationService/DeleteProblemResponse")]
|
---|
| 398 | void DeleteProblem(long id);
|
---|
| 399 |
|
---|
| 400 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetProblemUsers", ReplyAction="http://tempuri.org/IAdministrationService/GetProblemUsersResponse")]
|
---|
| 401 | System.Collections.Generic.List<System.Guid> GetProblemUsers(long problemId);
|
---|
| 402 |
|
---|
| 403 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateProblemUsers", ReplyAction="http://tempuri.org/IAdministrationService/UpdateProblemUsersResponse")]
|
---|
| 404 | void UpdateProblemUsers(long problemId, System.Collections.Generic.List<System.Guid> users);
|
---|
| 405 |
|
---|
| 406 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/GetProblemData", ReplyAction="http://tempuri.org/IAdministrationService/GetProblemDataResponse")]
|
---|
| 407 | byte[] GetProblemData(long problemId);
|
---|
| 408 |
|
---|
| 409 | [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAdministrationService/UpdateProblemData", ReplyAction="http://tempuri.org/IAdministrationService/UpdateProblemDataResponse")]
|
---|
| 410 | void UpdateProblemData(long problemId, byte[] data);
|
---|
[8055] | 411 | }
|
---|
[14738] | 412 |
|
---|
| 413 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
---|
| 414 | public interface IAdministrationServiceChannel : HeuristicLab.Clients.OKB.Administration.IAdministrationService, System.ServiceModel.IClientChannel
|
---|
| 415 | {
|
---|
[8055] | 416 | }
|
---|
[14738] | 417 |
|
---|
| 418 | [System.Diagnostics.DebuggerStepThroughAttribute()]
|
---|
| 419 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
---|
| 420 | public partial class AdministrationServiceClient : System.ServiceModel.ClientBase<HeuristicLab.Clients.OKB.Administration.IAdministrationService>, HeuristicLab.Clients.OKB.Administration.IAdministrationService
|
---|
| 421 | {
|
---|
| 422 |
|
---|
| 423 | public AdministrationServiceClient()
|
---|
| 424 | {
|
---|
| 425 | }
|
---|
| 426 |
|
---|
| 427 | public AdministrationServiceClient(string endpointConfigurationName) :
|
---|
| 428 | base(endpointConfigurationName)
|
---|
| 429 | {
|
---|
| 430 | }
|
---|
| 431 |
|
---|
| 432 | public AdministrationServiceClient(string endpointConfigurationName, string remoteAddress) :
|
---|
| 433 | base(endpointConfigurationName, remoteAddress)
|
---|
| 434 | {
|
---|
| 435 | }
|
---|
| 436 |
|
---|
| 437 | public AdministrationServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
---|
| 438 | base(endpointConfigurationName, remoteAddress)
|
---|
| 439 | {
|
---|
| 440 | }
|
---|
| 441 |
|
---|
| 442 | public AdministrationServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
---|
| 443 | base(binding, remoteAddress)
|
---|
| 444 | {
|
---|
| 445 | }
|
---|
| 446 |
|
---|
| 447 | public HeuristicLab.Clients.OKB.Administration.Platform GetPlatform(long id)
|
---|
| 448 | {
|
---|
| 449 | return base.Channel.GetPlatform(id);
|
---|
| 450 | }
|
---|
| 451 |
|
---|
| 452 | public System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.Platform> GetPlatforms()
|
---|
| 453 | {
|
---|
| 454 | return base.Channel.GetPlatforms();
|
---|
| 455 | }
|
---|
| 456 |
|
---|
| 457 | public long AddPlatform(HeuristicLab.Clients.OKB.Administration.Platform dto)
|
---|
| 458 | {
|
---|
| 459 | return base.Channel.AddPlatform(dto);
|
---|
| 460 | }
|
---|
| 461 |
|
---|
| 462 | public void UpdatePlatform(HeuristicLab.Clients.OKB.Administration.Platform dto)
|
---|
| 463 | {
|
---|
| 464 | base.Channel.UpdatePlatform(dto);
|
---|
| 465 | }
|
---|
| 466 |
|
---|
| 467 | public void DeletePlatform(long id)
|
---|
| 468 | {
|
---|
| 469 | base.Channel.DeletePlatform(id);
|
---|
| 470 | }
|
---|
| 471 |
|
---|
| 472 | public HeuristicLab.Clients.OKB.Administration.AlgorithmClass GetAlgorithmClass(long id)
|
---|
| 473 | {
|
---|
| 474 | return base.Channel.GetAlgorithmClass(id);
|
---|
| 475 | }
|
---|
| 476 |
|
---|
| 477 | public System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.AlgorithmClass> GetAlgorithmClasses()
|
---|
| 478 | {
|
---|
| 479 | return base.Channel.GetAlgorithmClasses();
|
---|
| 480 | }
|
---|
| 481 |
|
---|
| 482 | public long AddAlgorithmClass(HeuristicLab.Clients.OKB.Administration.AlgorithmClass dto)
|
---|
| 483 | {
|
---|
| 484 | return base.Channel.AddAlgorithmClass(dto);
|
---|
| 485 | }
|
---|
| 486 |
|
---|
| 487 | public void UpdateAlgorithmClass(HeuristicLab.Clients.OKB.Administration.AlgorithmClass dto)
|
---|
| 488 | {
|
---|
| 489 | base.Channel.UpdateAlgorithmClass(dto);
|
---|
| 490 | }
|
---|
| 491 |
|
---|
| 492 | public void DeleteAlgorithmClass(long id)
|
---|
| 493 | {
|
---|
| 494 | base.Channel.DeleteAlgorithmClass(id);
|
---|
| 495 | }
|
---|
| 496 |
|
---|
| 497 | public HeuristicLab.Clients.OKB.Administration.Algorithm GetAlgorithm(long id)
|
---|
| 498 | {
|
---|
| 499 | return base.Channel.GetAlgorithm(id);
|
---|
| 500 | }
|
---|
| 501 |
|
---|
| 502 | public System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.Algorithm> GetAlgorithms()
|
---|
| 503 | {
|
---|
| 504 | return base.Channel.GetAlgorithms();
|
---|
| 505 | }
|
---|
| 506 |
|
---|
| 507 | public long AddAlgorithm(HeuristicLab.Clients.OKB.Administration.Algorithm dto)
|
---|
| 508 | {
|
---|
| 509 | return base.Channel.AddAlgorithm(dto);
|
---|
| 510 | }
|
---|
| 511 |
|
---|
| 512 | public void UpdateAlgorithm(HeuristicLab.Clients.OKB.Administration.Algorithm dto)
|
---|
| 513 | {
|
---|
| 514 | base.Channel.UpdateAlgorithm(dto);
|
---|
| 515 | }
|
---|
| 516 |
|
---|
| 517 | public void DeleteAlgorithm(long id)
|
---|
| 518 | {
|
---|
| 519 | base.Channel.DeleteAlgorithm(id);
|
---|
| 520 | }
|
---|
| 521 |
|
---|
| 522 | public System.Collections.Generic.List<System.Guid> GetAlgorithmUsers(long algorithmId)
|
---|
| 523 | {
|
---|
| 524 | return base.Channel.GetAlgorithmUsers(algorithmId);
|
---|
| 525 | }
|
---|
| 526 |
|
---|
| 527 | public void UpdateAlgorithmUsers(long algorithmId, System.Collections.Generic.List<System.Guid> users)
|
---|
| 528 | {
|
---|
| 529 | base.Channel.UpdateAlgorithmUsers(algorithmId, users);
|
---|
| 530 | }
|
---|
| 531 |
|
---|
| 532 | public byte[] GetAlgorithmData(long algorithmId)
|
---|
| 533 | {
|
---|
| 534 | return base.Channel.GetAlgorithmData(algorithmId);
|
---|
| 535 | }
|
---|
| 536 |
|
---|
| 537 | public void UpdateAlgorithmData(long algorithmId, byte[] data)
|
---|
| 538 | {
|
---|
| 539 | base.Channel.UpdateAlgorithmData(algorithmId, data);
|
---|
| 540 | }
|
---|
| 541 |
|
---|
| 542 | public HeuristicLab.Clients.OKB.Administration.ProblemClass GetProblemClass(long id)
|
---|
| 543 | {
|
---|
| 544 | return base.Channel.GetProblemClass(id);
|
---|
| 545 | }
|
---|
| 546 |
|
---|
| 547 | public System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.ProblemClass> GetProblemClasses()
|
---|
| 548 | {
|
---|
| 549 | return base.Channel.GetProblemClasses();
|
---|
| 550 | }
|
---|
| 551 |
|
---|
| 552 | public long AddProblemClass(HeuristicLab.Clients.OKB.Administration.ProblemClass dto)
|
---|
| 553 | {
|
---|
| 554 | return base.Channel.AddProblemClass(dto);
|
---|
| 555 | }
|
---|
| 556 |
|
---|
| 557 | public void UpdateProblemClass(HeuristicLab.Clients.OKB.Administration.ProblemClass dto)
|
---|
| 558 | {
|
---|
| 559 | base.Channel.UpdateProblemClass(dto);
|
---|
| 560 | }
|
---|
| 561 |
|
---|
| 562 | public void DeleteProblemClass(long id)
|
---|
| 563 | {
|
---|
| 564 | base.Channel.DeleteProblemClass(id);
|
---|
| 565 | }
|
---|
| 566 |
|
---|
| 567 | public HeuristicLab.Clients.OKB.Administration.Problem GetProblem(long id)
|
---|
| 568 | {
|
---|
| 569 | return base.Channel.GetProblem(id);
|
---|
| 570 | }
|
---|
| 571 |
|
---|
| 572 | public System.Collections.Generic.List<HeuristicLab.Clients.OKB.Administration.Problem> GetProblems()
|
---|
| 573 | {
|
---|
| 574 | return base.Channel.GetProblems();
|
---|
| 575 | }
|
---|
| 576 |
|
---|
| 577 | public long AddProblem(HeuristicLab.Clients.OKB.Administration.Problem dto)
|
---|
| 578 | {
|
---|
| 579 | return base.Channel.AddProblem(dto);
|
---|
| 580 | }
|
---|
| 581 |
|
---|
| 582 | public void UpdateProblem(HeuristicLab.Clients.OKB.Administration.Problem dto)
|
---|
| 583 | {
|
---|
| 584 | base.Channel.UpdateProblem(dto);
|
---|
| 585 | }
|
---|
| 586 |
|
---|
| 587 | public void DeleteProblem(long id)
|
---|
| 588 | {
|
---|
| 589 | base.Channel.DeleteProblem(id);
|
---|
| 590 | }
|
---|
| 591 |
|
---|
| 592 | public System.Collections.Generic.List<System.Guid> GetProblemUsers(long problemId)
|
---|
| 593 | {
|
---|
| 594 | return base.Channel.GetProblemUsers(problemId);
|
---|
| 595 | }
|
---|
| 596 |
|
---|
| 597 | public void UpdateProblemUsers(long problemId, System.Collections.Generic.List<System.Guid> users)
|
---|
| 598 | {
|
---|
| 599 | base.Channel.UpdateProblemUsers(problemId, users);
|
---|
| 600 | }
|
---|
| 601 |
|
---|
| 602 | public byte[] GetProblemData(long problemId)
|
---|
| 603 | {
|
---|
| 604 | return base.Channel.GetProblemData(problemId);
|
---|
| 605 | }
|
---|
| 606 |
|
---|
| 607 | public void UpdateProblemData(long problemId, byte[] data)
|
---|
| 608 | {
|
---|
| 609 | base.Channel.UpdateProblemData(problemId, data);
|
---|
| 610 | }
|
---|
[8055] | 611 | }
|
---|
| 612 | }
|
---|