io.github.wj0410.cloudbox.tools.constant.TokenConstants Maven / Gradle / Ivy
The newest version!
package io.github.wj0410.cloudbox.tools.constant;
/**
* Token的Key常量
*
* @author wangjie
*/
public class TokenConstants {
/**
* 令牌自定义标识
*/
public static final String AUTHENTICATION = "Authorization";
/**
* 令牌前缀
*/
public static final String PREFIX = "Bearer ";
/**
* 令牌秘钥
*/
public final static String SECRET = "abcdefghijklmnopqrstuvwxyz";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy