package com.vci.web.constant;
|
|
/**
|
* token的相关key
|
* @author weidy
|
* @date 2019/11/7 10:10 AM
|
*/
|
public class TokenKeyConstant {
|
|
/**
|
* 用户的token传输时使用的名称
|
*/
|
public static final String USER_TOKEN_KEY ="AuthorizationToken";
|
|
/**
|
* 系统的token传输时使用的名称
|
*/
|
public static final String SYSTEM_PRIVATE_KEY = "AuthorizationSystemToken";
|
|
/**
|
* 系统的日志链路主键传输时使用的名称
|
*/
|
public static final String LOG_TRACE_ID_KEY = "AuthorizationLogTraceId";
|
|
/**
|
* 日志的追踪主键的名称
|
*/
|
public static final String TRACE_ID = "logTraceId";
|
|
/**
|
* 系统的多语参数名称
|
*/
|
public static final String LANGUAGE_KEY = "vciLanguageCode";
|
|
/**
|
* 请求的时间参数
|
*/
|
public static final String REQUEST_TIMESTAMP = "vciHttpStartRequestTime";
|
|
}
|