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)

Location:
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientManager.cs

    r839 r902  
    1313  public interface IClientManager {
    1414    [OperationContract]
    15     List<ClientInfo> GetAllClients();
     15    ResponseList<ClientInfo> GetAllClients();
    1616    [OperationContract]
    1717    [ServiceKnownType(typeof (Resource))]
    1818    [ServiceKnownType(typeof(ClientInfo))]
    19     List<ClientGroup> GetAllClientGroups();
     19    ResponseList<ClientGroup> GetAllClientGroups();
    2020    [OperationContract]
    21     List<UpTimeStatistics> GetAllUpTimeStatistics();
     21    ResponseList<UpTimeStatistics> GetAllUpTimeStatistics();
    2222  }
    2323}
  • trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IJobManager.cs

    r796 r902  
    1313  public interface IJobManager {
    1414    [OperationContract]
    15     List<Job> GetAllJobs();
     15    ResponseList<Job> GetAllJobs();
    1616  }
    1717}
  • trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IUserRoleManager.cs

    r842 r902  
    1313  public interface IUserRoleManager {
    1414    [OperationContract]
    15     List<User> GetAllUsers();
     15    ResponseList<User> GetAllUsers();
    1616    [OperationContract]
    17     void AddNewUser(User user);
     17    Response AddNewUser(User user);
    1818    [OperationContract]
    19     List<UserGroup> GetAllUserGroups();
     19    Response RemoveUser(long userId);
     20    [OperationContract]
     21    Response AddNewUserGroup(UserGroup userGroup);
     22    [OperationContract]
     23    Response RemoveUserGroup(long groupId);
     24    [OperationContract]
     25    ResponseList<UserGroup> GetAllUserGroups();
     26    [OperationContract]
     27    Response AddUserToGroup(long groupId, long userId);
     28    [OperationContract]
     29    Response RemoveUserFromGroup(long groupId, long userId);
    2030  }
    2131}
Note: See TracChangeset for help on using the changeset viewer.