Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/08 16:35:24 (16 years ago)
Author:
msteinbi
Message:

Implementation of UserRoleManager (#417)

File:
1 edited

Legend:

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

    r837 r902  
    55using HeuristicLab.Hive.Contracts.Interfaces;
    66using HeuristicLab.Hive.Contracts.BusinessObjects;
     7using HeuristicLab.Hive.Contracts;
    78
    89namespace HeuristicLab.Hive.Server.Core {
     
    3536    #region IClientManager Members
    3637
    37     public List<ClientInfo> GetAllClients() {
    38       return clients;
     38    public ResponseList<ClientInfo> GetAllClients() {
     39      return null;
    3940    }
    4041
    41     public List<ClientGroup> GetAllClientGroups() {
    42       return clientGroups;
     42    public ResponseList<ClientGroup> GetAllClientGroups() {
     43      return null;
    4344    }
    4445
    45     public List<UpTimeStatistics> GetAllUpTimeStatistics() {
    46       return new List<UpTimeStatistics>();
     46    public ResponseList<UpTimeStatistics> GetAllUpTimeStatistics() {
     47      return null;
    4748    }
    4849
Note: See TracChangeset for help on using the changeset viewer.