Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
56ebb03
Update README.md
binarywang Oct 4, 2016
711a2e4
Update README.md
binarywang Oct 4, 2016
86fd57f
Update README.md
binarywang Oct 7, 2016
d948afe
Update README.md
binarywang Oct 7, 2016
63a1558
Update README.md
binarywang Oct 7, 2016
4ce5ef3
Update README.md
binarywang Oct 7, 2016
3a4b9ed
Update README.md
binarywang Oct 11, 2016
67c8b61
Update README.md
binarywang Oct 17, 2016
3dce698
Update README.md
binarywang Oct 21, 2016
c20e02b
Update README.md
binarywang Oct 23, 2016
cf6559a
Update README.md
binarywang Oct 23, 2016
f5a6219
Update README.md
binarywang Oct 24, 2016
858ebb7
Update README.md
binarywang Oct 24, 2016
d241e54
Update README.md
binarywang Oct 24, 2016
8c759bc
Update README.md
binarywang Oct 24, 2016
953892b
Update README.md
binarywang Oct 25, 2016
1a46826
Update README.md
binarywang Oct 25, 2016
98a83ef
Update README.md
binarywang Oct 27, 2016
beaa7fc
Update README.md
binarywang Oct 27, 2016
f2e3c53
Update README.md
binarywang Oct 27, 2016
7b8d7f3
Update .travis.yml
binarywang Oct 28, 2016
c71d4df
Update .travis.yml
binarywang Oct 28, 2016
1f15cc8
Merge branch 'develop'
binarywang Oct 31, 2016
f73cc99
Update README.md
binarywang Nov 4, 2016
a0c9696
Update README.md
binarywang Nov 4, 2016
ddd16f6
Update README.md
binarywang Nov 4, 2016
5566ab4
Update README.md
binarywang Nov 4, 2016
27fe891
Update README.md
binarywang Nov 8, 2016
16e4c48
Update README.md
binarywang Nov 8, 2016
283101e
Update README.md
binarywang Nov 10, 2016
6b7b421
Update README.md
binarywang Nov 14, 2016
83d2996
Update README.md
binarywang Nov 14, 2016
266f9a6
Update README.md
binarywang Nov 14, 2016
df47af2
修改WxCpMessage中agentId的数据类型, String-> Integer
Nov 16, 2016
59feeba
Merge pull request #75 from withinthefog/agentid-type
binarywang Nov 16, 2016
3640f0d
Revert "修改WxCpMessage中agentId的数据类型, String-> Integer"
binarywang Nov 16, 2016
e7d7030
Merge pull request #76 from wechat-group/revert-75-agentid-type
binarywang Nov 16, 2016
f629ccb
Update README.md
binarywang Nov 16, 2016
3ebf393
Update README.md
binarywang Nov 16, 2016
878ebb1
Update README.md
binarywang Nov 16, 2016
1e35375
Update README.md
binarywang Nov 17, 2016
2a63e12
Update README.md
binarywang Nov 17, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
修改WxCpMessage中agentId的数据类型, String-> Integer
  • Loading branch information
cty committed Nov 16, 2016
commit df47af287d53d83229ccaa3179047f19f5adfede
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ test-config.xml
/gradle/
*.bat
/gradlew
**/build/

# OSX
# Icon must end with two \r
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public interface WxCpConfigStorage {

String getCorpSecret();

String getAgentId();
Integer getAgentId();

String getToken();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class WxCpInMemoryConfigStorage implements WxCpConfigStorage {
protected volatile String token;
protected volatile String accessToken;
protected volatile String aesKey;
protected volatile String agentId;
protected volatile Integer agentId;
protected volatile long expiresTime;

protected volatile String oauth2redirectUri;
Expand Down Expand Up @@ -146,11 +146,11 @@ public void setAesKey(String aesKey) {
}

@Override
public String getAgentId() {
public Integer getAgentId() {
return this.agentId;
}

public void setAgentId(String agentId) {
public void setAgentId(Integer agentId) {
this.agentId = agentId;
}

Expand Down
Loading