@@ -72,15 +72,15 @@ public void expireAccessToken() {
72
72
73
73
@ Override
74
74
public String getJsapiTicket () {
75
- return jsapiTicket ;
75
+ return this . jsapiTicket ;
76
76
}
77
77
78
78
public void setJsapiTicket (String jsapiTicket ) {
79
79
this .jsapiTicket = jsapiTicket ;
80
80
}
81
81
82
82
public long getJsapiTicketExpiresTime () {
83
- return jsapiTicketExpiresTime ;
83
+ return this . jsapiTicketExpiresTime ;
84
84
}
85
85
86
86
public void setJsapiTicketExpiresTime (long jsapiTicketExpiresTime ) {
@@ -109,7 +109,7 @@ public void expireJsapiTicket() {
109
109
*/
110
110
@ Override
111
111
public String getCardApiTicket () {
112
- return cardApiTicket ;
112
+ return this . cardApiTicket ;
113
113
}
114
114
115
115
@ Override
@@ -163,7 +163,7 @@ public void setToken(String token) {
163
163
164
164
@ Override
165
165
public String getAesKey () {
166
- return aesKey ;
166
+ return this . aesKey ;
167
167
}
168
168
169
169
public void setAesKey (String aesKey ) {
@@ -189,7 +189,7 @@ public void setOauth2redirectUri(String oauth2redirectUri) {
189
189
190
190
@ Override
191
191
public String getHttp_proxy_host () {
192
- return http_proxy_host ;
192
+ return this . http_proxy_host ;
193
193
}
194
194
195
195
public void setHttp_proxy_host (String http_proxy_host ) {
@@ -198,7 +198,7 @@ public void setHttp_proxy_host(String http_proxy_host) {
198
198
199
199
@ Override
200
200
public int getHttp_proxy_port () {
201
- return http_proxy_port ;
201
+ return this . http_proxy_port ;
202
202
}
203
203
204
204
public void setHttp_proxy_port (int http_proxy_port ) {
@@ -207,7 +207,7 @@ public void setHttp_proxy_port(int http_proxy_port) {
207
207
208
208
@ Override
209
209
public String getHttp_proxy_username () {
210
- return http_proxy_username ;
210
+ return this . http_proxy_username ;
211
211
}
212
212
213
213
public void setHttp_proxy_username (String http_proxy_username ) {
@@ -216,7 +216,7 @@ public void setHttp_proxy_username(String http_proxy_username) {
216
216
217
217
@ Override
218
218
public String getHttp_proxy_password () {
219
- return http_proxy_password ;
219
+ return this . http_proxy_password ;
220
220
}
221
221
222
222
public void setHttp_proxy_password (String http_proxy_password ) {
@@ -226,29 +226,29 @@ public void setHttp_proxy_password(String http_proxy_password) {
226
226
@ Override
227
227
public String toString () {
228
228
return "WxMpInMemoryConfigStorage{" +
229
- "appId='" + appId + '\'' +
230
- ", secret='" + secret + '\'' +
231
- ", token='" + token + '\'' +
232
- ", partnerId='" + partnerId + '\'' +
233
- ", partnerKey='" + partnerKey + '\'' +
234
- ", accessToken='" + accessToken + '\'' +
235
- ", aesKey='" + aesKey + '\'' +
236
- ", expiresTime=" + expiresTime +
237
- ", http_proxy_host='" + http_proxy_host + '\'' +
238
- ", http_proxy_port=" + http_proxy_port +
239
- ", http_proxy_username='" + http_proxy_username + '\'' +
240
- ", http_proxy_password='" + http_proxy_password + '\'' +
241
- ", jsapiTicket='" + jsapiTicket + '\'' +
242
- ", jsapiTicketExpiresTime='" + jsapiTicketExpiresTime + '\'' +
243
- ", cardApiTicket='" + cardApiTicket + '\'' +
244
- ", cardApiTicketExpiresTime='" + cardApiTicketExpiresTime + '\'' +
245
- ", tmpDirFile='" + tmpDirFile + '\'' +
229
+ "appId='" + this . appId + '\'' +
230
+ ", secret='" + this . secret + '\'' +
231
+ ", token='" + this . token + '\'' +
232
+ ", partnerId='" + this . partnerId + '\'' +
233
+ ", partnerKey='" + this . partnerKey + '\'' +
234
+ ", accessToken='" + this . accessToken + '\'' +
235
+ ", aesKey='" + this . aesKey + '\'' +
236
+ ", expiresTime=" + this . expiresTime +
237
+ ", http_proxy_host='" + this . http_proxy_host + '\'' +
238
+ ", http_proxy_port=" + this . http_proxy_port +
239
+ ", http_proxy_username='" + this . http_proxy_username + '\'' +
240
+ ", http_proxy_password='" + this . http_proxy_password + '\'' +
241
+ ", jsapiTicket='" + this . jsapiTicket + '\'' +
242
+ ", jsapiTicketExpiresTime='" + this . jsapiTicketExpiresTime + '\'' +
243
+ ", cardApiTicket='" + this . cardApiTicket + '\'' +
244
+ ", cardApiTicketExpiresTime='" + this . cardApiTicketExpiresTime + '\'' +
245
+ ", tmpDirFile='" + this . tmpDirFile + '\'' +
246
246
'}' ;
247
247
}
248
248
249
249
@ Override
250
250
public String getPartnerId () {
251
- return partnerId ;
251
+ return this . partnerId ;
252
252
}
253
253
254
254
public void setPartnerId (String partnerId ) {
@@ -257,7 +257,7 @@ public void setPartnerId(String partnerId) {
257
257
258
258
@ Override
259
259
public String getPartnerKey () {
260
- return partnerKey ;
260
+ return this . partnerKey ;
261
261
}
262
262
263
263
public void setPartnerKey (String partnerKey ) {
@@ -275,11 +275,11 @@ public void setTmpDirFile(File tmpDirFile) {
275
275
276
276
@ Override
277
277
public SSLContext getSSLContext () {
278
- return sslContext ;
278
+ return this . sslContext ;
279
279
}
280
280
281
281
public void setSSLContext (SSLContext context ) {
282
- sslContext = context ;
282
+ this . sslContext = context ;
283
283
}
284
284
285
285
@ Override
0 commit comments