Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/IControllerService.cs @ 9305

Last change on this file since 9305 was 9305, checked in by fschoepp, 11 years ago

#1888:

  • Added an Update / GetExperiment... methods to the controller for updating and querying experiments.
  • The AlgorithmConverter class now properly converts from/to JSON format.
  • Integrated backbone js as MVC provider for JavaScript + jquery.
  • Added experiment.model.js + experiment.view.js + experiment.controller.js containing the MVC impl. for the Experiment pages.
  • Added new methods to the ExperimentController usable by the backbone js model implementation.
  • Added the experiment dialog from HL 3.3.7 (variate experiment parameters). It's capable of variating the algorithm parameters.
File size: 2.0 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6using System.Net.Security;
7using HeuristicLab.Services.Optimization.ControllerService.Model;
8
9namespace HeuristicLab.Services.Optimization.ControllerService {
10  [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)]
11  public interface IControllerService {
12    [OperationContract]
13    IEnumerable<OptimizationScenario> GetOptimizationScenarios();
14
15    [OperationContract]
16    IEnumerable<string> GetOptimizationScenarioNames();
17
18    [OperationContract]
19    OptimizationScenario GetOptimizationScenarioByName(string name);
20
21    [OperationContract]
22    bool ScheduleOptimizationScenario(User user, OptimizationScenario scenario, JobExecutionDetails details);
23
24    [OperationContract]
25    bool ScheduleExperiment(User user, string experiment, JobExecutionDetails details);
26
27    [OperationContract]
28    IEnumerable<Job> GetJobs(User user);
29
30    [OperationContract]
31    Job GetJob(User user, string id);
32
33    [OperationContract]
34    bool DeleteJob(User user, string id);
35
36    [OperationContract]
37    IList<Model.Run> GetJobResults(User user, string id);
38
39    [OperationContract]
40    bool AddHiveScenario(User user, string scenarioXml, string scenarioMapper);
41
42    [OperationContract]
43    bool DeleteHiveScenario(User user, string scenarioName);
44
45    [OperationContract]
46    string SaveExperiment(User user, Experiment experiment);
47
48    [OperationContract]
49    IEnumerable<string> GetExperimentNames(User user);
50
51    [OperationContract]
52    IEnumerable<Experiment> GetExperiments(User user);
53
54    [OperationContract]
55    bool DeleteExperiment(User user, string experiment);
56
57    [OperationContract]
58    Job GetTasks(User u, string jobId);
59
60    [OperationContract]
61    Task GetTaskData(User u, string jobId, string taskId);
62
63    [OperationContract]
64    Experiment GetExperimentByName(User user, string scenario);
65
66    [OperationContract]
67    Experiment GetExperimentById(User u, string nodeId);
68  }
69}
Note: See TracBrowser for help on using the repository browser.