mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 15:56:30 +00:00
82b3b526a7
file load works, suite can start up
27 lines
744 B
C#
27 lines
744 B
C#
namespace Azaion.CommonSecurity;
|
|
|
|
public class SecurityConstants
|
|
{
|
|
public const string CONFIG_PATH = "config.json";
|
|
|
|
public const string DUMMY_DIR = "dummy";
|
|
|
|
#region ApiConfig
|
|
|
|
public const string DEFAULT_API_URL = "https://api.azaion.com/";
|
|
public const int DEFAULT_API_RETRY_COUNT = 3;
|
|
public const int DEFAULT_API_TIMEOUT_SECONDS = 40;
|
|
|
|
public const string CLAIM_NAME_ID = "nameid";
|
|
public const string CLAIM_EMAIL = "unique_name";
|
|
public const string CLAIM_ROLE = "role";
|
|
|
|
#endregion ApiConfig
|
|
|
|
#region SocketClient
|
|
public const string SOCKET_HOST = "127.0.0.1";
|
|
public const int SOCKET_SEND_PORT = 5127;
|
|
public const int SOCKET_RECEIVE_PORT = 5128;
|
|
|
|
#endregion SocketClient
|
|
} |