[测评系统]--测评系统核心代码库
linzhijie
2021-04-22 3ac1305cdd8b1f3b6cbde2f3b25db73fb39e2cd6
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
package com.ots.common.constant;
 
public interface ShiroConstants {
    
    String CURRENT_USER = "currentUser";
    
    String CURRENT_USERNAME = "username";
    
    String MESSAGE = "message";
    
    String ERROR = "errorMsg";
    
    String ENCODING = "UTF-8";
    
    String ONLINE_SESSION = "online_session";
    
    String CURRENT_CAPTCHA = "captcha";
    
    String CURRENT_ENABLED = "captchaEnabled";
    
    String CURRENT_TYPE = "captchaType";
    
    String CURRENT_VALIDATECODE = "validateCode";
    
    String CAPTCHA_ERROR = "captchaError";
    
    String LOGINRECORDCACHE = "loginRecordCache";
    
    String SYS_USERCACHE = "sys-userCache";
}