Skip to content

Commit 8311262

Browse files
committed
规范类命名
1 parent 8c45021 commit 8311262

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/api/impl/WxCpServiceAbstractImpl.java renamed to weixin-java-cp/src/main/java/me/chanjar/weixin/cp/api/impl/BaseWxCpServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import me.chanjar.weixin.cp.bean.WxCpMessageSendResult;
3838
import me.chanjar.weixin.cp.config.WxCpConfigStorage;
3939

40-
public abstract class WxCpServiceAbstractImpl<H, P> implements WxCpService, RequestHttp<H, P> {
40+
public abstract class BaseWxCpServiceImpl<H, P> implements WxCpService, RequestHttp<H, P> {
4141
protected final Logger log = LoggerFactory.getLogger(this.getClass());
4242

4343
private WxCpUserService userService = new WxCpUserServiceImpl(this);

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/api/impl/WxCpServiceApacheHttpClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.io.IOException;
2020

21-
public class WxCpServiceApacheHttpClientImpl extends WxCpServiceAbstractImpl<CloseableHttpClient, HttpHost> {
21+
public class WxCpServiceApacheHttpClientImpl extends BaseWxCpServiceImpl<CloseableHttpClient, HttpHost> {
2222
protected CloseableHttpClient httpClient;
2323
protected HttpHost httpProxy;
2424

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/api/impl/WxCpServiceJoddHttpImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import me.chanjar.weixin.common.util.http.HttpType;
99
import me.chanjar.weixin.cp.config.WxCpConfigStorage;
1010

11-
public class WxCpServiceJoddHttpImpl extends WxCpServiceAbstractImpl<HttpConnectionProvider, ProxyInfo> {
11+
public class WxCpServiceJoddHttpImpl extends BaseWxCpServiceImpl<HttpConnectionProvider, ProxyInfo> {
1212
protected HttpConnectionProvider httpClient;
1313
protected ProxyInfo httpProxy;
1414

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/api/impl/WxCpServiceOkHttpImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import java.io.IOException;
1313

14-
public class WxCpServiceOkHttpImpl extends WxCpServiceAbstractImpl<OkHttpClient, OkHttpProxyInfo> {
14+
public class WxCpServiceOkHttpImpl extends BaseWxCpServiceImpl<OkHttpClient, OkHttpProxyInfo> {
1515
protected OkHttpClient httpClient;
1616
protected OkHttpProxyInfo httpProxy;
1717

0 commit comments

Comments
 (0)