dangsn
2024-06-06 33321f5486fd586fda6fd3f46b7e71754fede28b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.vci.starter.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";
 
}