File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/main/java/com/wechat/pay/contrib/apache/httpclient/auth Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 3333 */
3434public class AutoUpdateCertificatesVerifier implements Verifier {
3535
36- //证书下载地址
36+ /**
37+ * 证书下载地址
38+ */
3739 public static final String CERT_DOWNLOAD_PATH = "https://api.mch.weixin.qq.com/v3/certificates" ;
3840 private static final Logger log = LoggerFactory .getLogger (AutoUpdateCertificatesVerifier .class );
39- //证书更新间隔时间,单位为分钟
41+ /**
42+ * 证书更新间隔时间,单位为分钟
43+ */
4044 protected final int minutesInterval ;
4145 protected final Credentials credentials ;
4246 protected final byte [] apiV3Key ;
4347 protected final ReentrantLock lock = new ReentrantLock ();
44- //上次更新时间
48+ /**
49+ * 上次更新时间
50+ */
4551 protected volatile Long lastUpdate ;
4652 protected CertificatesVerifier verifier ;
4753
You can’t perform that action at this time.
0 commit comments