mirror of
https://gitee.com/egzosn/pay-java-parent.git
synced 2026-05-09 12:36:16 +08:00
增加注释
This commit is contained in:
@@ -17,9 +17,9 @@ public abstract class BasePayConfigStorage implements PayConfigStorage{
|
||||
|
||||
|
||||
// ali rsa_private 商户私钥,pkcs8格式
|
||||
//wx api_key 商户密钥
|
||||
//wx api_key 应用私钥(生成签名时使用)
|
||||
private volatile String keyPrivate ;
|
||||
// 支付公钥
|
||||
// 支付平台公钥(签名校验使用)
|
||||
private volatile String keyPublic;
|
||||
//异步回调地址
|
||||
private volatile String notifyUrl;
|
||||
|
||||
@@ -67,20 +67,15 @@ import java.util.concurrent.locks.Lock;
|
||||
* @return 字符编码
|
||||
*/
|
||||
String getInputCharset();
|
||||
/**
|
||||
* 获取密钥 与 #getKeyPrivate 类似
|
||||
* @return 获取密钥
|
||||
*/
|
||||
String getSecretKey();
|
||||
|
||||
/**
|
||||
* 公钥
|
||||
* 支付平台公钥(签名校验使用)
|
||||
* @return 公钥
|
||||
*/
|
||||
String getKeyPublic();
|
||||
|
||||
/**
|
||||
* 私钥
|
||||
* 应用私钥(生成签名时使用)
|
||||
* @return 私钥
|
||||
*/
|
||||
String getKeyPrivate();
|
||||
|
||||
Reference in New Issue
Block a user