Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/08/11 10:38:36 (13 years ago)
Author:
ascheibe
Message:

#1233

  • moved DTO's to Services.Hive project
  • removed Services.Hive.Common project
  • some cleanups
  • added DTO's for enums
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/ServiceContracts
Files:
1 added
1 copied

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/ServiceContracts/IHiveService.cs

    r6703 r6717  
    2424using System.Net.Security;
    2525using System.ServiceModel;
    26 using HeuristicLab.Services.Hive.Common.DataTransfer;
    27 
    28 namespace HeuristicLab.Services.Hive.Common.ServiceContracts {
     26using HeuristicLab.Services.Hive.DataTransfer;
     27
     28namespace HeuristicLab.Services.Hive.ServiceContracts {
    2929
    3030  [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)]
     
    3838    Guid AddChildJob(Guid parentJobId, Job job, JobData jobData);
    3939
    40     [OperationContract] 
     40    [OperationContract]
    4141    Job GetJob(Guid jobId);
    4242
    43     [OperationContract] 
     43    [OperationContract]
    4444    IEnumerable<Job> GetJobs();
    4545
    46     [OperationContract] 
     46    [OperationContract]
    4747    IEnumerable<LightweightJob> GetLightweightJobs(IEnumerable<Guid> jobIds);
    4848
    49     [OperationContract] 
     49    [OperationContract]
    5050    IEnumerable<LightweightJob> GetLightweightChildJobs(Guid? parentJobId, bool recursive, bool includeParent);
    5151
    52     [OperationContract] 
     52    [OperationContract]
    5353    IEnumerable<LightweightJob> GetLightweightExperimentJobs(Guid experimentId);
    5454
Note: See TracChangeset for help on using the changeset viewer.