版本升级2.0.7-RELEASE

This commit is contained in:
egan
2018-02-21 23:42:33 +08:00
parent 9258310ec9
commit e18ff96cc4
12 changed files with 19 additions and 19 deletions

View File

@@ -5,7 +5,7 @@
<parent>
<artifactId>pay-java-parent</artifactId>
<groupId>com.egzosn</groupId>
<version>2.0.7-SNAPSHOT</version>
<version>2.0.7-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>

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) {