增加注释

This commit is contained in:
egzosn@gmail.com
2017-07-27 16:27:56 +08:00
parent 9c35462fcf
commit 4fc0f0f187
6 changed files with 16 additions and 18 deletions

View File

@@ -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;

View File

@@ -67,20 +67,15 @@ import java.util.concurrent.locks.Lock;
* @return 字符编码
*/
String getInputCharset();
/**
* 获取密钥 与 #getKeyPrivate 类似
* @return 获取密钥
*/
String getSecretKey();
/**
* 公钥
* 支付平台公钥(签名校验使用)
* @return 公钥
*/
String getKeyPublic();
/**
* 私钥
* 应用私钥(生成签名时使用)
* @return 私钥
*/
String getKeyPrivate();