| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package jnpf.util;
- /**
- * 通用常量信息
- *
- * @author jnpf
- */
- public class Constants {
- /**
- * token
- */
- public static final String AUTHORIZATION = "Authorization";
- /**
- * UTF-8 字符集
- */
- public static final String UTF8 = "UTF-8";
- /**
- * GBK 字符集
- */
- public static final String GBK = "GBK";
- /**
- * http请求
- */
- public static final String HTTP = "http://";
- /**
- * https请求
- */
- public static final String HTTPS = "https://";
- /**
- * 成功标记
- */
- public static final Integer SUCCESS = 200;
- /**
- * 失败标记
- */
- public static final Integer FAIL = 500;
- /**
- * 登录成功
- */
- public static final String LOGIN_SUCCESS = "Success";
- /**
- * 注销
- */
- public static final String LOGOUT = "Logout";
- /**
- * 注册
- */
- public static final String REGISTER = "Register";
- /**
- * 验证码 redis key
- */
- public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
- /**
- * 验证码有效期(分钟)
- */
- public static final long CAPTCHA_EXPIRATION = 2;
- /**
- * 令牌有效期(分钟)
- */
- public final static long TOKEN_EXPIRE = 720;
- /**
- * swagger版本号
- */
- public final static String SWAGGER_VERSION = "3.4.8";
- /**
- * swagger版本号
- */
- public final static String USER_AGENT = "User-Agent";
- /**
- * 管理员账号
- */
- public static final String ADMIN_KEY = "admin";
- }
|