Changeset 945 for trunk/sources/HeuristicLab.Hive.Contracts
- Timestamp:
- 12/10/08 14:52:04 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Contracts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/ApplicationConstants.cs
r942 r945 29 29 public static string RESPONSE_CLIENT_RESOURCE_REMOVED = "Client.ResourceRemoved"; 30 30 public static string RESPONSE_CLIENT_RESOURCE_NOT_FOUND = "Client.ResourceNotFound"; 31 public static string RESPONSE_CLIENT_PERMISSIONOWNER_DOESNT_EXIST = "Client.PermissionOwnerDoesntExist"; 31 32 32 33 public static string RESPONSE_COMMUNICATOR_HARDBEAT_RECEIVED = "Communicator.HeardbeatReceived"; -
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IUserRoleManager.cs
r934 r945 25 25 ResponseList<UserGroup> GetAllUserGroups(); 26 26 [OperationContract] 27 Response AddPermissionOwnerToGroup(long groupId, PermissionOwner permissionOwner); 27 Response AddUserToGroup(long groupId, long userId); 28 [OperationContract] 29 Response AddUserGroupToGroup(long groupId, long groupToAddId); 28 30 [OperationContract] 29 31 Response RemovePermissionOwnerFromGroup(long groupId, long userId);
Note: See TracChangeset
for help on using the changeset viewer.