Commit 9536bb99 authored by liaozan's avatar liaozan 🏀

Export properties for SignatureContextUtil

parent c9004e5e
......@@ -16,6 +16,20 @@ public class SignatureContextUtil {
return type.cast(Optional.ofNullable(LOCAL.get()).orElseThrow(EXCEPTION_SUPPLIER));
}
/**
* 获取appKey
*/
public static String getAppKey() {
return get(SignatureContext.class).getAppKey();
}
/**
* 获取appSecret
*/
public static String getAppSecret() {
return get(SignatureContext.class).getAppSecret();
}
/**
* 赋值
*/
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment