Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/28/12 10:02:01 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Added a administrator web interface for job management
  • Fixed Hive Client (PluginValidator) to find the assemblies within the right directories
  • Reorganized controller classes (Folders HL, Interfaces, Azure)
  • You may now successfully schedule and run jobs with the web ui.
Location:
branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/IControllerService.cs

    r8545 r8958  
    1212    [OperationContract]
    1313    IEnumerable<OptimizationScenario> GetOptimizationScenarios();
     14
     15    [OperationContract]
     16    IEnumerable<string> GetOptimizationScenarioNames();
    1417
    1518    [OperationContract]
     
    3033    [OperationContract]
    3134    IList<Model.Run> GetJobResults(User user, string id);
     35
     36    [OperationContract]
     37    bool AddHiveScenario(User user, string scenarioXml, string scenarioMapper);
     38
     39    [OperationContract]
     40    bool DeleteHiveScenario(User user, string scenarioName);
    3241  }
    3342}
  • branches/OaaS/HeuristicLab.Services.Optimization.Controller/Interfaces/IScenarioManager.cs

    r8545 r8958  
    1212    void DeleteJob(User user, string id);
    1313    IList<Model.Run> GetJobResults(User user, string id);
     14    bool AddScenario(User user, string scenarioName, string scenarioXml, string scenarioMapper);
     15    bool DeleteScenario(User user, string scenarioName);
    1416  }
    1517}
Note: See TracChangeset for help on using the changeset viewer.