🎨 modifier order

This commit is contained in:
Kyle Scully
2021-10-23 08:26:45 -07:00
committed by GitHub
parent a2042dd7c2
commit 44e4ee4416
8 changed files with 20 additions and 20 deletions

View File

@ -8,16 +8,16 @@ import org.apache.commons.lang3.StringUtils;
* @date 2020/01/09
**/
public abstract class AbstractWxOpenInRedisConfigStorage extends WxOpenInMemoryConfigStorage {
protected final static String COMPONENT_VERIFY_TICKET_KEY = "wechat_component_verify_ticket:";
protected final static String COMPONENT_ACCESS_TOKEN_KEY = "wechat_component_access_token:";
protected static final String COMPONENT_VERIFY_TICKET_KEY = "wechat_component_verify_ticket:";
protected static final String COMPONENT_ACCESS_TOKEN_KEY = "wechat_component_access_token:";
protected final static String AUTHORIZER_REFRESH_TOKEN_KEY = "wechat_authorizer_refresh_token:";
protected final static String AUTHORIZER_ACCESS_TOKEN_KEY = "wechat_authorizer_access_token:";
protected static final String AUTHORIZER_REFRESH_TOKEN_KEY = "wechat_authorizer_refresh_token:";
protected static final String AUTHORIZER_ACCESS_TOKEN_KEY = "wechat_authorizer_access_token:";
protected final static String LOCK_KEY = "wechat_lock:";
protected static final String LOCK_KEY = "wechat_lock:";
protected final static String JSAPI_TICKET_KEY = "wechat_jsapi_ticket:";
protected final static String CARD_API_TICKET_KEY = "wechat_card_api_ticket:";
protected static final String JSAPI_TICKET_KEY = "wechat_jsapi_ticket:";
protected static final String CARD_API_TICKET_KEY = "wechat_card_api_ticket:";
/**
* redis 存储的 key 的前缀,可为空