Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/01/10 13:58:24 (14 years ago)
Author:
kgrading
Message:

Removed References to HiveLogging and updated the default logging mechanism (#991)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ServerConsoleFacade.cs

    r3220 r3578  
    9797    }
    9898
     99    public ResponseList<JobDto> GetAllJobsWithFilter(State jobState, int offset, int count) {
     100      secMan.Authorize("AccessJobs", sessionID, Guid.Empty);
     101      return jobManager.GetAllJobsWithFilter(jobState, offset, count);
     102    }
     103
    99104    public ResponseObject<JobDto> GetJobById(Guid jobId) {
    100105      secMan.Authorize("AccessJobs", sessionID, jobId);
    101106      return jobManager.GetJobById(jobId);
     107    }
     108
     109    public ResponseObject<JobDto> GetJobByIdWithDetails(Guid jobId) {
     110      secMan.Authorize("AccessJobs", sessionID, jobId);
     111      return jobManager.GetJobByIdWithDetails(jobId);
    102112    }
    103113
Note: See TracChangeset for help on using the changeset viewer.