Changeset 4381 for trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces
- Timestamp:
- 09/13/10 01:21:32 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/IAdminService.cs
r4279 r4381 25 25 26 26 namespace HeuristicLab.Services.OKB { 27 28 27 /// <summary> 29 28 /// Allows updating the implementation of algorithms and problems. All … … 38 37 /// <returns>A list of <see cref="Platform"/>s.</returns> 39 38 [OperationContract] 40 Platform[] GetPlatform Names();39 Platform[] GetPlatforms(); 41 40 42 41 /// <summary> … … 109 108 [OperationContract] 110 109 void UpdateCompleteProblem(Problem problem); 111 112 110 } 113 111 } -
trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/IDataService.cs
r4279 r4381 24 24 25 25 namespace HeuristicLab.Services.OKB { 26 27 26 /// <summary> 28 27 /// Choose between <see cref="Algorithm"/> or <see cref="Problem"/>. … … 30 29 public enum EntityType { 31 30 /// <summary> 32 /// Selects<see cref="Algorithm"/> as entity type.31 /// Use <see cref="Algorithm"/> as entity type. 33 32 /// </summary> 34 33 Algorithm, … … 93 92 void AbortTransfer(); 94 93 } 95 96 94 } -
trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/IQueryService.cs
r4279 r4381 25 25 26 26 namespace HeuristicLab.Services.OKB { 27 28 27 /// <summary> 29 28 /// Service interface for downloading selected information about <see cref="Experiment"/> <see cref="Run"/>s. … … 31 30 [ServiceContract(SessionMode = SessionMode.Required, ProtectionLevel = ProtectionLevel.EncryptAndSign)] 32 31 public interface IQueryService { 33 34 32 /// <summary> 35 33 /// Gets a list of all possible attribute selectors. -
trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/IRunnerService.cs
r4313 r4381 31 31 [ServiceContract(SessionMode = SessionMode.Required, ProtectionLevel = ProtectionLevel.EncryptAndSign)] 32 32 public interface IRunnerService { 33 34 33 /// <summary> 35 34 /// Logs the current user in. In case the user or client … … 86 85 /// <param name="project">The project.</param> 87 86 [OperationContract(IsInitiating = false)] 88 void AddRun(Algorithm algorithm, Problem problem , Project project);87 void AddRun(Algorithm algorithm, Problem problem); 89 88 90 89 /// <summary> … … 103 102 void Logout(); 104 103 } 105 106 104 } -
trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/ITableService.cs
r4279 r4381 25 25 26 26 namespace HeuristicLab.Services.OKB { 27 28 27 /// <summary> 29 28 /// Service interface for downloading and uploading data tables. … … 75 74 void DeleteTableRows(int[] ids, string tableName); 76 75 } 77 78 76 }
Note: See TracChangeset
for help on using the changeset viewer.