Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/30/12 16:09:34 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Controller is now capable of gathering Hive Jobs
  • Hive Jobs will be mapped to independent Job-Class (shared between Controller and Frontend)
  • HiveScenarioManager is capable of gathering Hive Jobs + their results
  • Job Results will be mapped to string properties
  • Frontend renders all Results after opening the job details
  • Misc: Frontend now passes User-object to Controller so that it is able to connect to the Hive Service (hardcoded values removed)
Location:
branches/OaaS/HeuristicLab.Services.Optimization.Web
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web

    • Property svn:ignore set to
      bin
      obj
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/OptimizationModels.cs

    r8506 r8545  
    77
    88namespace HeuristicLab.Services.Optimization.Web.Models {
     9
     10  public class OptimizationModel {
     11    public IEnumerable<OptimizationScenario> Scenarios { get; set; }
     12    public IEnumerable<Job> Jobs { get; set; }
     13    public Operation Operation { get; set; }
     14  }
     15
     16  public class JobDetailsModel {
     17    public IList<Run> Runs { get; set; }
     18    public Job Job { get; set; }
     19  }
     20
     21  public enum Operation {
     22    DeleteJob
     23  }
    924
    1025  public class ProblemParametersModelBinder : IModelBinder {
Note: See TracChangeset for help on using the changeset viewer.