mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-24 08:57:16 +08:00
add missing ‘this’
This commit is contained in:
parent
d90ef7fb00
commit
e34f6de775
@ -72,7 +72,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getJsapiTicket() {
|
public String getJsapiTicket() {
|
||||||
return jsapiTicket;
|
return this.jsapiTicket;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setJsapiTicket(String jsapiTicket) {
|
public void setJsapiTicket(String jsapiTicket) {
|
||||||
@ -80,7 +80,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public long getJsapiTicketExpiresTime() {
|
public long getJsapiTicketExpiresTime() {
|
||||||
return jsapiTicketExpiresTime;
|
return this.jsapiTicketExpiresTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setJsapiTicketExpiresTime(long jsapiTicketExpiresTime) {
|
public void setJsapiTicketExpiresTime(long jsapiTicketExpiresTime) {
|
||||||
@ -109,7 +109,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String getCardApiTicket() {
|
public String getCardApiTicket() {
|
||||||
return cardApiTicket;
|
return this.cardApiTicket;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -163,7 +163,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getAesKey() {
|
public String getAesKey() {
|
||||||
return aesKey;
|
return this.aesKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAesKey(String aesKey) {
|
public void setAesKey(String aesKey) {
|
||||||
@ -189,7 +189,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getHttp_proxy_host() {
|
public String getHttp_proxy_host() {
|
||||||
return http_proxy_host;
|
return this.http_proxy_host;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHttp_proxy_host(String http_proxy_host) {
|
public void setHttp_proxy_host(String http_proxy_host) {
|
||||||
@ -198,7 +198,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getHttp_proxy_port() {
|
public int getHttp_proxy_port() {
|
||||||
return http_proxy_port;
|
return this.http_proxy_port;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHttp_proxy_port(int http_proxy_port) {
|
public void setHttp_proxy_port(int http_proxy_port) {
|
||||||
@ -207,7 +207,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getHttp_proxy_username() {
|
public String getHttp_proxy_username() {
|
||||||
return http_proxy_username;
|
return this.http_proxy_username;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHttp_proxy_username(String http_proxy_username) {
|
public void setHttp_proxy_username(String http_proxy_username) {
|
||||||
@ -216,7 +216,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getHttp_proxy_password() {
|
public String getHttp_proxy_password() {
|
||||||
return http_proxy_password;
|
return this.http_proxy_password;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHttp_proxy_password(String http_proxy_password) {
|
public void setHttp_proxy_password(String http_proxy_password) {
|
||||||
@ -226,29 +226,29 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "WxMpInMemoryConfigStorage{" +
|
return "WxMpInMemoryConfigStorage{" +
|
||||||
"appId='" + appId + '\'' +
|
"appId='" + this.appId + '\'' +
|
||||||
", secret='" + secret + '\'' +
|
", secret='" + this.secret + '\'' +
|
||||||
", token='" + token + '\'' +
|
", token='" + this.token + '\'' +
|
||||||
", partnerId='" + partnerId + '\'' +
|
", partnerId='" + this.partnerId + '\'' +
|
||||||
", partnerKey='" + partnerKey + '\'' +
|
", partnerKey='" + this.partnerKey + '\'' +
|
||||||
", accessToken='" + accessToken + '\'' +
|
", accessToken='" + this.accessToken + '\'' +
|
||||||
", aesKey='" + aesKey + '\'' +
|
", aesKey='" + this.aesKey + '\'' +
|
||||||
", expiresTime=" + expiresTime +
|
", expiresTime=" + this.expiresTime +
|
||||||
", http_proxy_host='" + http_proxy_host + '\'' +
|
", http_proxy_host='" + this.http_proxy_host + '\'' +
|
||||||
", http_proxy_port=" + http_proxy_port +
|
", http_proxy_port=" + this.http_proxy_port +
|
||||||
", http_proxy_username='" + http_proxy_username + '\'' +
|
", http_proxy_username='" + this.http_proxy_username + '\'' +
|
||||||
", http_proxy_password='" + http_proxy_password + '\'' +
|
", http_proxy_password='" + this.http_proxy_password + '\'' +
|
||||||
", jsapiTicket='" + jsapiTicket + '\'' +
|
", jsapiTicket='" + this.jsapiTicket + '\'' +
|
||||||
", jsapiTicketExpiresTime='" + jsapiTicketExpiresTime + '\'' +
|
", jsapiTicketExpiresTime='" + this.jsapiTicketExpiresTime + '\'' +
|
||||||
", cardApiTicket='" + cardApiTicket + '\'' +
|
", cardApiTicket='" + this.cardApiTicket + '\'' +
|
||||||
", cardApiTicketExpiresTime='" + cardApiTicketExpiresTime + '\'' +
|
", cardApiTicketExpiresTime='" + this.cardApiTicketExpiresTime + '\'' +
|
||||||
", tmpDirFile='" + tmpDirFile + '\'' +
|
", tmpDirFile='" + this.tmpDirFile + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPartnerId() {
|
public String getPartnerId() {
|
||||||
return partnerId;
|
return this.partnerId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPartnerId(String partnerId) {
|
public void setPartnerId(String partnerId) {
|
||||||
@ -257,7 +257,7 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPartnerKey() {
|
public String getPartnerKey() {
|
||||||
return partnerKey;
|
return this.partnerKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPartnerKey(String partnerKey) {
|
public void setPartnerKey(String partnerKey) {
|
||||||
@ -275,11 +275,11 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SSLContext getSSLContext() {
|
public SSLContext getSSLContext() {
|
||||||
return sslContext;
|
return this.sslContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSSLContext(SSLContext context) {
|
public void setSSLContext(SSLContext context) {
|
||||||
sslContext = context;
|
this.sslContext = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user