Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/08 09:43:58 (16 years ago)
Author:
msteinbi
Message:

Implementation of UserRoleManager (#417)

Location:
trunk/sources/HeuristicLab.Hive.Contracts
Files:
2 edited

Legend:

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

    r907 r929  
    66namespace HeuristicLab.Hive.Contracts {
    77  public class ApplicationConstants {
    8     public static string RESPONSE_LOGIN_USER_ALLREADY_ONLINE = "Login.UserAllreadyOnline";
    9     public static string RESPONSE_LOGIN_SUCCESS = "Login.Success";
    10 
    11     public static string RESPONSE_LOGOUT_CLIENT_NOT_REGISTERED = "Logout.ClientNotRegistered";
    12     public static string RESPONSE_LOGOUT_SUCCESS = "Logout.Success";
    138
    149    public static string RESPONSE_USERROLE_GET_ALL_USERS = "UserRole.GetAllUsers";
     
    1813    public static string RESPONSE_USERROLE_USER_REMOVED = "UserRole.UserRemoved";
    1914
     15    public static string RESPONSE_CLIENT_GET_ALL_CLIENTS = "Client.GetAllClients";
     16
     17    public static string RESPONSE_COMMUNICATOR_HARDBEAT_RECEIVED = "Communicator.HeardbeatReceived";
     18    public static string RESPONSE_COMMUNICATOR_JOB_PULLED = "Communicator.JobPulled";
     19    public static string RESPONSE_COMMUNICATOR_JOBRESULT_RECEIVED = "Communicator.JobResultReceived";
     20    public static string RESPONSE_COMMUNICATOR_LOGIN_USER_ALLREADY_ONLINE = "Communicator.LoginUserAllreadyOnline";
     21    public static string RESPONSE_COMMUNICATOR_LOGIN_SUCCESS = "Communicator.LoginSuccess";
     22    public static string RESPONSE_COMMUNICATOR_LOGOUT_CLIENT_NOT_REGISTERED = "Communicator.LogoutClientNotRegistered";
     23    public static string RESPONSE_COMMUNICATOR_LOGOUT_SUCCESS = "Logout.Success";
     24
    2025  }
    2126}
  • trunk/sources/HeuristicLab.Hive.Contracts/BusinessObjects/UserGroup.cs

    r902 r929  
    3030  [DataContract]
    3131  public class UserGroup : PermissionOwner {
    32     [DataMember]
    33     public long UserGroupId { get; set; }
    3432  }
    3533}
Note: See TracChangeset for help on using the changeset viewer.