Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Hive.Contracts/ApplicationConstants.cs @ 1130

Last change on this file since 1130 was 907, checked in by msteinbi, 15 years ago

Implementation of UserRoleManager (#417)

File size: 976 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Contracts {
7  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";
13
14    public static string RESPONSE_USERROLE_GET_ALL_USERS = "UserRole.GetAllUsers";
15    public static string RESPONSE_USERROLE_USER_EXISTS_ALLREADY = "UserRole.UserExistsAllready";
16    public static string RESPONSE_USERROLE_USER_SUCCESSFULLY_ADDED = "UserRole.UserSuccessfullyAdded";
17    public static string RESPONSE_USERROLE_USER_DOESNT_EXIST = "UserRole.UserDoesntExist";
18    public static string RESPONSE_USERROLE_USER_REMOVED = "UserRole.UserRemoved";
19
20  }
21}
Note: See TracBrowser for help on using the repository browser.