Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
egzosn
2018-03-28 17:02:39 +08:00
15 changed files with 31 additions and 24 deletions

View File

@@ -3,8 +3,8 @@ package com.egzosn.pay.common.bean;
/**
* 货币类型
* @author Actinia
* @email hayesfu@qq.com
* <pre>
* email hayesfu@qq.com
* create 2017 2017/1/16
* </pre>
*/

View File

@@ -133,7 +133,7 @@ public class HttpStringEntity extends StringEntity {
* @param request 请求体
* @param contentType 内容类型
*
* @throws UnsupportedEncodingException 不支持默认的HTTP字符集
* @throws UnsupportedCharsetException 不支持默认的HTTP字符集
*/
public HttpStringEntity(String request, ContentType contentType) throws UnsupportedCharsetException {
super(request, contentType);
@@ -146,7 +146,7 @@ public class HttpStringEntity extends StringEntity {
* @param request 请求体
* @param charset 字符类型
*
* @throws UnsupportedEncodingException 不支持默认的HTTP字符集
* @throws UnsupportedCharsetException 不支持默认的HTTP字符集
*/
public HttpStringEntity(String request, String charset) throws UnsupportedCharsetException {
super(request, charset);

View File

@@ -74,10 +74,11 @@ public class CertDescriptor {
}
return encryptCertTemp;
}
/**
* 通过keyStore 获取私钥签名证书PrivateKey对象
*
*
* @param pwd 证书对应密码
* @return PrivateKey 私钥
*/
public PrivateKey getSignCertPrivateKey(String pwd) {