Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/16 12:13:51 (8 years ago)
Author:
abeham
Message:

#2560: Moved both get and set characteristic values functionality to run creation service

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.OKB/3.3/RunCreation/IRunCreationService.cs

    r13501 r13511  
    4747
    4848    [OperationContract]
     49    IEnumerable<Value> GetCharacteristicValues(long problemId);
     50
     51    [OperationContract]
    4952    [FaultContract(typeof(MissingProblem))]
    5053    [FaultContract(typeof(UnknownCharacteristicType))]
    51     void SetCharacteristicValue(long problemId, string characteristicName, Value value);
     54    void SetCharacteristicValue(long problemId, Value value);
     55
     56    [OperationContract]
     57    [FaultContract(typeof(MissingProblem))]
     58    [FaultContract(typeof(UnknownCharacteristicType))]
     59    void SetCharacteristicValues(long problemId, Value[] values);
    5260  }
    5361}
Note: See TracChangeset for help on using the changeset viewer.