Changeset 902 for trunk/sources/HeuristicLab.Hive.Contracts/Interfaces
- Timestamp:
- 12/04/08 16:35:24 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Contracts/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientManager.cs
r839 r902 13 13 public interface IClientManager { 14 14 [OperationContract] 15 List<ClientInfo> GetAllClients();15 ResponseList<ClientInfo> GetAllClients(); 16 16 [OperationContract] 17 17 [ServiceKnownType(typeof (Resource))] 18 18 [ServiceKnownType(typeof(ClientInfo))] 19 List<ClientGroup> GetAllClientGroups();19 ResponseList<ClientGroup> GetAllClientGroups(); 20 20 [OperationContract] 21 List<UpTimeStatistics> GetAllUpTimeStatistics();21 ResponseList<UpTimeStatistics> GetAllUpTimeStatistics(); 22 22 } 23 23 } -
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IJobManager.cs
r796 r902 13 13 public interface IJobManager { 14 14 [OperationContract] 15 List<Job> GetAllJobs();15 ResponseList<Job> GetAllJobs(); 16 16 } 17 17 } -
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IUserRoleManager.cs
r842 r902 13 13 public interface IUserRoleManager { 14 14 [OperationContract] 15 List<User> GetAllUsers();15 ResponseList<User> GetAllUsers(); 16 16 [OperationContract] 17 voidAddNewUser(User user);17 Response AddNewUser(User user); 18 18 [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); 20 30 } 21 31 }
Note: See TracChangeset
for help on using the changeset viewer.