SYMBOL INDEX (1424 symbols across 109 files) FILE: src/main/java/com/belerweb/social/API.java class API (line 9) | public abstract class API { method API (line 16) | protected API(Weibo weibo) { method API (line 20) | protected API(Weixin weixin) { method API (line 24) | protected API(QQConnect connect) { method API (line 28) | protected API(QQT t) { FILE: src/main/java/com/belerweb/social/SDK.java class SDK (line 20) | public abstract class SDK { method SDK (line 24) | public SDK() { method SDK (line 28) | public SDK(Charset defaultCharset) { method get (line 32) | public String get(String url, List params) { method get (line 41) | public String get(String url) { method post (line 45) | public String post(String url, HttpEntity postBody) { method post (line 54) | public String post(String url, List params) { method post (line 63) | public String post(String url) { method addParameter (line 67) | public void addParameter(List params, String name, Obje... method addNotNullParameter (line 74) | public void addNotNullParameter(List params, String nam... method addTrueParameter (line 80) | public void addTrueParameter(List params, String name, ... method lonLatToAddress (line 92) | public Result lonLatToAddress(Double lon, Double lat) { FILE: src/main/java/com/belerweb/social/bean/Error.java class Error (line 5) | public final class Error extends JsonBean { method Error (line 11) | public Error() {} method Error (line 13) | public Error(String code, String message) { method Error (line 18) | private Error(JSONObject jsonObject) { method getRequest (line 22) | public String getRequest() { method setRequest (line 26) | public void setRequest(String request) { method getErrorCode (line 30) | public String getErrorCode() { method setErrorCode (line 34) | public void setErrorCode(String errorCode) { method getError (line 38) | public String getError() { method setError (line 42) | public void setError(String error) { method toString (line 46) | @Override method parse (line 51) | public static Error parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/bean/Gender.java type Gender (line 3) | public enum Gender { method Gender (line 12) | private Gender(int intValue, String code, String zhValue, String enVal... method value (line 19) | public int value() { method code (line 23) | public String code() { method text (line 27) | public String text() { method enText (line 31) | public String enText() { method toString (line 35) | @Override method parse (line 40) | public static Gender parse(Integer val) { method parse (line 54) | public static Gender parse(String val) { FILE: src/main/java/com/belerweb/social/bean/JsonBean.java class JsonBean (line 5) | public abstract class JsonBean { method JsonBean (line 9) | protected JsonBean() {} method JsonBean (line 11) | protected JsonBean(JSONObject jsonObject) { method getJsonObject (line 15) | public JSONObject getJsonObject() { FILE: src/main/java/com/belerweb/social/bean/OnlineStatus.java type OnlineStatus (line 3) | public enum OnlineStatus { method OnlineStatus (line 11) | private OnlineStatus(int status, String text, String enText) { method online (line 17) | public boolean online() { method status (line 21) | public int status() { method text (line 25) | public String text() { method enText (line 29) | public String enText() { method toString (line 33) | @Override method parse (line 38) | public static OnlineStatus parse(Integer val) { method parse (line 48) | public static OnlineStatus parse(String val) { FILE: src/main/java/com/belerweb/social/bean/Result.java class Result (line 16) | public class Result { method Result (line 22) | public Result(Error error) { method Result (line 26) | public Result(T result) { method Result (line 30) | public Result(List results) { method success (line 34) | public boolean success() { method getError (line 38) | public Error getError() { method getResult (line 42) | public T getResult() { method getResults (line 46) | public List getResults() { method parse (line 50) | public static Result parse(String json, Class resultType) { method parse (line 62) | @SuppressWarnings("unchecked") method parse (line 77) | @SuppressWarnings("unchecked") method toString (line 104) | public static String toString(Object obj) { method parseLong (line 112) | public static Long parseLong(Object obj) { method parseInteger (line 127) | public static Integer parseInteger(Object obj) { method parseDouble (line 142) | public static Double parseDouble(Object obj) { method parseBoolean (line 157) | public static Boolean parseBoolean(Object obj) { method parseDate (line 174) | public static Date parseDate(Object obj, String pattern, Locale locale) { method parseTimeSeconds (line 194) | public static Date parseTimeSeconds(Object obj) { FILE: src/main/java/com/belerweb/social/captcha/api/Yundama.java class Yundama (line 20) | public class Yundama { method Yundama (line 27) | public Yundama(String username, String password) { method decode (line 32) | public Result decode(byte[] img, YundamaType type) { FILE: src/main/java/com/belerweb/social/captcha/bean/YundamaType.java type YundamaType (line 4) | public enum YundamaType { method YundamaType (line 120) | YundamaType(Integer type) { method getType (line 124) | public Integer getType() { FILE: src/main/java/com/belerweb/social/exception/SocialException.java class SocialException (line 3) | public class SocialException extends RuntimeException { method SocialException (line 7) | public SocialException(Exception exception) { method SocialException (line 11) | public SocialException(String message) { FILE: src/main/java/com/belerweb/social/http/Http.java class Http (line 33) | public final class Http { method getDefaultCharset (line 77) | private static Charset getDefaultCharset() { method setDefaultCharset (line 89) | public static void setDefaultCharset(Charset charset) { method get (line 93) | public static String get(String uri, List params) throw... method get (line 107) | public static String get(String uri, Header... headers) throws HttpExc... method post (line 117) | public static String post(String uri, HttpEntity postBody, Header... h... method post (line 132) | public static String post(String uri, List params, Stri... method post (line 154) | public static String post(String uri) throws HttpException { method execute (line 158) | private static String execute(HttpRequestBase request) throws HttpExce... method isRequestSuccess (line 176) | public static boolean isRequestSuccess(HttpResponse response) throws H... method responseToString (line 181) | public static String responseToString(HttpResponse response) throws Ht... method randomAgent (line 209) | public static String randomAgent() { method newClient (line 213) | public static HttpClient newClient() { FILE: src/main/java/com/belerweb/social/http/HttpException.java class HttpException (line 5) | public class HttpException extends Exception { method HttpException (line 9) | public HttpException(Exception exception) { method HttpException (line 13) | public HttpException(String message) { FILE: src/main/java/com/belerweb/social/mail/api/POP3.java class POP3 (line 22) | public class POP3 { method POP3 (line 33) | public POP3(String username, String password, String host) { method POP3 (line 37) | public POP3(String username, String password, String host, int port, b... method login (line 50) | private boolean login() throws SocketException, IOException { method test (line 58) | public boolean test() throws SocialException { method download (line 79) | public void download(File dir) throws SocialException { method download (line 136) | public void download(String dir) { FILE: src/main/java/com/belerweb/social/qq/connect/api/OAuth2.java class OAuth2 (line 18) | public final class OAuth2 extends API { method OAuth2 (line 20) | OAuth2(QQConnect connect) { method authorize (line 29) | public String authorize() { method authorize (line 39) | public String authorize(String redirectUri) { method authorize (line 51) | public String authorize(Boolean wap) { method authorize (line 63) | public String authorize(String redirectUri, Boolean wap) { method authorize (line 82) | public String authorize(String clientId, String redirectUri, String re... method accessToken (line 113) | public Result accessToken(String code) { method accessToken (line 124) | public Result accessToken(String code, String redirectUri) { method accessToken (line 135) | public Result accessToken(String code, Boolean wap) { method accessToken (line 146) | public Result accessToken(String code, String redirectUri... method accessToken (line 164) | public Result accessToken(String clientId, String clientS... method refreshAccessToken (line 188) | public Result refreshAccessToken(String refreshToken) { method refreshAccessToken (line 198) | public Result refreshAccessToken(String clientId, String ... method refreshAccessToken (line 212) | public Result refreshAccessToken(String refreshToken, Boo... method refreshAccessToken (line 223) | public Result refreshAccessToken(String clientId, String ... method refreshAccessToken (line 239) | public Result refreshAccessToken(String clientId, String ... method openId (line 262) | public Result openId(String accessToken) { method openId (line 274) | public Result openId(String accessToken, Boolean wap) { method parseAccessTokenResult (line 301) | private Result parseAccessTokenResult(String result) { FILE: src/main/java/com/belerweb/social/qq/connect/api/QQConnect.java class QQConnect (line 25) | public final class QQConnect extends SDK { method QQConnect (line 34) | public QQConnect(String clientId, String clientSecret) { method QQConnect (line 39) | public QQConnect(String clientId, String clientSecret, String redirect... method addIdol (line 53) | public Result addIdol(String accessToken, String openId, List addIdol(String accessToken, String openId, List addIdol(String accessToken, String oauthConsumerK... method delIdol (line 108) | public Result delIdol(String accessToken, String openId, String... method delIdol (line 122) | public Result delIdol(String accessToken, String openId, String... method delIdol (line 137) | public Result delIdol(String accessToken, String oauthConsumerK... method addOneBlog (line 159) | public Result addOneBlog(String accessToken, String openId, Str... method addOneBlog (line 174) | public Result addOneBlog(String accessToken, String oauthConsum... method addT (line 197) | public Result addT(String accessToken, String openId, String con... method addT (line 213) | public Result addT(String accessToken, String oauthConsumerKey, ... method addT (line 235) | public Result addT(String accessToken, String oauthConsumerKey, ... method delT (line 269) | public Result delT(String accessToken, String openId, String id) { method addPicT (line 287) | public Result addPicT(String accessToken, String openId, String ... method addPicT (line 306) | public Result addPicT(String accessToken, String oauthConsumerKe... method addPicT (line 332) | public Result addPicT(String accessToken, String oauthConsumerKe... method delT (line 386) | public Result delT(String accessToken, String oauthConsumerKey,... method getTenpayAddr (line 404) | public Result> getTenpayAddr(String accessToken, S... method getTenpayAddr (line 420) | public Result> getTenpayAddr(String accessToken, S... method getTenpayAddr (line 438) | public Result> getTenpayAddr(String accessToken, S... method getOAuth2 (line 481) | public OAuth2 getOAuth2() { method getUser (line 488) | public User getUser() { method getClientId (line 495) | public String getClientId() { method setClientId (line 499) | public void setClientId(String clientId) { method getClientSecret (line 503) | public String getClientSecret() { method setClientSecret (line 507) | public void setClientSecret(String clientSecret) { method getRedirectUri (line 511) | public String getRedirectUri() { method setRedirectUri (line 515) | public void setRedirectUri(String redirectUri) { FILE: src/main/java/com/belerweb/social/qq/connect/api/QZone.java class QZone (line 30) | public final class QZone extends API { method QZone (line 32) | protected QZone(QQConnect connect) { method listAlbum (line 44) | public Result listAlbum(String accessToken, String openid) { method listAlbum (line 57) | public Result listAlbum(String oAuthConsumerKey, String accessT... method addAlbum (line 86) | public Result addAlbum(String accessToken, String openid, Strin... method addAlbum (line 112) | public Result addAlbum(String oAuthConsumerKey, String accessTo... method uploadPic (line 155) | public Result uploadPic(String oAuthConsumerKey, Stri... method listPhoto (line 214) | public Result listPhoto(String accessToken, String openid, Stri... method listPhoto (line 228) | public Result listPhoto(String oAuthConsumerKey, String accessT... FILE: src/main/java/com/belerweb/social/qq/connect/api/User.java class User (line 14) | public final class User extends API { method User (line 16) | protected User(QQConnect connect) { method getUserInfo (line 29) | public Result getUserInfo(St... method getUserInfo (line 44) | public Result getUserInfo(St... method getSimpleUserInfo (line 65) | public Result getSimpleUserI... method getVipInfo (line 86) | public Result getVipInfo(Str... method getVipInfo (line 102) | public Result getVipInfo(Str... method getVipRichInfo (line 123) | public Result getVipRichInfo... method getVipRichInfo (line 139) | public Result getVipRichInfo... FILE: src/main/java/com/belerweb/social/qq/connect/api/Weibo.java class Weibo (line 20) | public final class Weibo extends API { method Weibo (line 22) | protected Weibo(QQConnect connect) { method getInfo (line 34) | public Result getInfo(String accessToken, String openid) { method getInfo (line 47) | public Result getInfo(String oAuthConsumerKey, String acces... method getOtherInfo (line 71) | public Result getOtherInfo(String accessToken, String openi... method getOtherInfo (line 86) | public Result getOtherInfo(String oAuthConsumerKey, String ... method getFansList (line 114) | public Result getFansList(String accessToken, String openid, ... method getFansList (line 134) | public Result getFansList(String oAuthConsumerKey, String acc... method getIdolList (line 167) | public Result getIdolList(String accessToken, String openid,... method getIdolList (line 185) | public Result getIdolList(String oAuthConsumerKey, String ac... method getRepostList (line 217) | public Result getRepostList(String accessToken, String ope... method getRepostList (line 238) | public Result getRepostList(String oAuthConsumerKey, Strin... FILE: src/main/java/com/belerweb/social/qq/connect/bean/AccessToken.java class AccessToken (line 8) | public class AccessToken extends JsonBean { method AccessToken (line 10) | public AccessToken() {} method AccessToken (line 12) | private AccessToken(JSONObject jsonObject) { method getToken (line 23) | public String getToken() { method setToken (line 27) | public void setToken(String token) { method getExpiresIn (line 35) | public Long getExpiresIn() { method setExpiresIn (line 39) | public void setExpiresIn(Long expiresIn) { method getRefreshToken (line 46) | public String getRefreshToken() { method setRefreshToken (line 50) | public void setRefreshToken(String refreshToken) { method parse (line 54) | public static AccessToken parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Album.java class Album (line 10) | public class Album extends JsonBean { method Album (line 12) | public Album() {} method Album (line 14) | private Album(JSONObject jsonObject) { method getAlbumId (line 26) | public String getAlbumId() { method setAlbumId (line 30) | public void setAlbumId(String albumId) { method getClassId (line 34) | public String getClassId() { method setClassId (line 38) | public void setClassId(String classId) { method getCreateTime (line 42) | public Date getCreateTime() { method setCreateTime (line 46) | public void setCreateTime(Date createTime) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getDescription (line 58) | public String getDescription() { method setDescription (line 62) | public void setDescription(String description) { method getCover (line 66) | public String getCover() { method setCover (line 70) | public void setCover(String cover) { method getPicNum (line 74) | public Integer getPicNum() { method setPicNum (line 78) | public void setPicNum(Integer picNum) { method parse (line 82) | public static Album parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/AlbumPrivilege.java type AlbumPrivilege (line 3) | public enum AlbumPrivilege { method AlbumPrivilege (line 8) | private AlbumPrivilege(Integer value) { method value (line 12) | public Integer value() { method toString (line 16) | @Override method parse (line 21) | public static AlbumPrivilege parse(Integer value) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Company.java class Company (line 8) | public class Company extends JsonBean { method Company (line 10) | public Company() {} method Company (line 12) | private Company(JSONObject jsonObject) { method getId (line 22) | public String getId() { method setId (line 26) | public void setId(String id) { method getCompanyName (line 30) | public String getCompanyName() { method setCompanyName (line 34) | public void setCompanyName(String companyName) { method getDepartmentName (line 38) | public String getDepartmentName() { method setDepartmentName (line 42) | public void setDepartmentName(String departmentName) { method getBeginYear (line 46) | public Integer getBeginYear() { method setBeginYear (line 50) | public void setBeginYear(Integer beginYear) { method getEndYear (line 54) | public Integer getEndYear() { method setEndYear (line 58) | public void setEndYear(Integer endYear) { method parse (line 62) | public static Company parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Display.java type Display (line 3) | public enum Display { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Education.java class Education (line 8) | public class Education extends JsonBean { method Education (line 10) | public Education() {} method Education (line 12) | private Education(JSONObject jsonObject) { method getId (line 22) | public String getId() { method setId (line 26) | public void setId(String id) { method getYear (line 30) | public Integer getYear() { method setYear (line 34) | public void setYear(Integer year) { method getSchoolId (line 38) | public String getSchoolId() { method setSchoolId (line 42) | public void setSchoolId(String schoolId) { method getDepartmentId (line 46) | public String getDepartmentId() { method setDepartmentId (line 50) | public void setDepartmentId(String departmentId) { method getLevel (line 54) | public Integer getLevel() { method setLevel (line 58) | public void setLevel(Integer level) { method parse (line 62) | public static Education parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/FanList.java class FanList (line 11) | public class FanList extends JsonBean { method FanList (line 13) | public FanList() {} method FanList (line 15) | private FanList(JSONObject jsonObject) { method getTimestamp (line 23) | public Date getTimestamp() { method setTimestamp (line 27) | public void setTimestamp(Date timestamp) { method getHasNext (line 31) | public Boolean getHasNext() { method setHasNext (line 35) | public void setHasNext(Boolean hasNext) { method getFans (line 39) | public List getFans() { method setFans (line 43) | public void setFans(List fans) { method parse (line 47) | public static FanList parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Gut.java type Gut (line 6) | public enum Gut { method Gut (line 14) | private Gut(int value) { method value (line 18) | public int value() { method toString (line 22) | @Override FILE: src/main/java/com/belerweb/social/qq/connect/bean/IdolList.java class IdolList (line 11) | public class IdolList extends JsonBean { method IdolList (line 13) | public IdolList() {} method IdolList (line 15) | private IdolList(JSONObject jsonObject) { method getTimestamp (line 23) | public Date getTimestamp() { method setTimestamp (line 27) | public void setTimestamp(Date timestamp) { method getHasNext (line 31) | public Boolean getHasNext() { method setHasNext (line 35) | public void setHasNext(Boolean hasNext) { method getFans (line 39) | public List getFans() { method setFans (line 43) | public void setFans(List fans) { method parse (line 47) | public static IdolList parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Image.java class Image (line 8) | public class Image extends JsonBean { method Image (line 10) | public Image() {} method Image (line 12) | private Image(JSONObject jsonObject) { method getUrl (line 20) | public String getUrl() { method setUrl (line 24) | public void setUrl(String url) { method getWidth (line 28) | public Integer getWidth() { method setWidth (line 32) | public void setWidth(Integer width) { method getHeight (line 36) | public Integer getHeight() { method setHeight (line 40) | public void setHeight(Integer height) { method parse (line 44) | public static Image parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Music.java class Music (line 8) | public class Music extends JsonBean { method Music (line 10) | public Music() {} method Music (line 12) | private Music(JSONObject jsonObject) { method getAuthor (line 21) | public String getAuthor() { method setAuthor (line 25) | public void setAuthor(String author) { method getUrl (line 29) | public String getUrl() { method setUrl (line 33) | public void setUrl(String url) { method getTitle (line 37) | public String getTitle() { method setTitle (line 41) | public void setTitle(String title) { method parse (line 45) | public static Music parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/NewT.java class NewT (line 13) | public class NewT extends JsonBean { method NewT (line 15) | public NewT() {} method NewT (line 17) | private NewT(JSONObject jsonObject) { method getId (line 25) | public Long getId() { method setId (line 29) | public void setId(Long id) { method getTime (line 33) | public Date getTime() { method setTime (line 37) | public void setTime(Date time) { method getImgUrl (line 41) | public String getImgUrl() { method setImgUrl (line 45) | public void setImgUrl(String imgUrl) { method parse (line 49) | public static NewT parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/OpenID.java class OpenID (line 7) | public class OpenID extends JsonBean { method OpenID (line 9) | public OpenID() {} method OpenID (line 11) | private OpenID(JSONObject jsonObject) { method getClientId (line 21) | public String getClientId() { method setClientId (line 25) | public void setClientId(String clientId) { method getOpenId (line 29) | public String getOpenId() { method setOpenId (line 33) | public void setOpenId(String openId) { method parse (line 37) | public static OpenID parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Photo.java class Photo (line 11) | public class Photo extends JsonBean { method Photo (line 13) | public Photo() {} method Photo (line 15) | private Photo(JSONObject jsonObject) { method getsLoc (line 28) | public String getsLoc() { method setsLoc (line 32) | public void setsLoc(String sLoc) { method getlLoc (line 36) | public String getlLoc() { method setlLoc (line 40) | public void setlLoc(String lLoc) { method getName (line 44) | public String getName() { method setName (line 48) | public void setName(String name) { method getDescription (line 52) | public String getDescription() { method setDescription (line 56) | public void setDescription(String description) { method getUpdatedTime (line 60) | public Date getUpdatedTime() { method setUpdatedTime (line 64) | public void setUpdatedTime(Date updatedTime) { method getUploadedTime (line 68) | public Date getUploadedTime() { method setUploadedTime (line 72) | public void setUploadedTime(Date uploadedTime) { method getSmallUrl (line 76) | public String getSmallUrl() { method setSmallUrl (line 80) | public void setSmallUrl(String smallUrl) { method getLargeImage (line 84) | public Image getLargeImage() { method setLargeImage (line 88) | public void setLargeImage(Image largeImage) { method parse (line 92) | public static Photo parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/PicUploadResult.java class PicUploadResult (line 8) | public class PicUploadResult extends JsonBean { method PicUploadResult (line 10) | public PicUploadResult() {} method PicUploadResult (line 12) | private PicUploadResult(JSONObject jsonObject) { method getAlbumId (line 24) | public String getAlbumId() { method setAlbumId (line 28) | public void setAlbumId(String albumId) { method getlLoc (line 32) | public String getlLoc() { method setlLoc (line 36) | public void setlLoc(String lLoc) { method getsLoc (line 40) | public String getsLoc() { method setsLoc (line 44) | public void setsLoc(String sLoc) { method getLargeUrl (line 48) | public String getLargeUrl() { method setLargeUrl (line 52) | public void setLargeUrl(String largeUrl) { method getSmallUrl (line 56) | public String getSmallUrl() { method setSmallUrl (line 60) | public void setSmallUrl(String smallUrl) { method getWidth (line 64) | public Integer getWidth() { method setWidth (line 68) | public void setWidth(Integer width) { method getHeight (line 72) | public Integer getHeight() { method setHeight (line 76) | public void setHeight(Integer height) { method parse (line 80) | public static PicUploadResult parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/RepostList.java class RepostList (line 14) | public class RepostList extends JsonBean { method RepostList (line 16) | public RepostList() {} method RepostList (line 18) | private RepostList(JSONObject jsonObject) { method getTimestamp (line 28) | public Date getTimestamp() { method setTimestamp (line 32) | public void setTimestamp(Date timestamp) { method getHasNext (line 36) | public Boolean getHasNext() { method setHasNext (line 40) | public void setHasNext(Boolean hasNext) { method getTotalNum (line 44) | public Integer getTotalNum() { method setTotalNum (line 48) | public void setTotalNum(Integer totalNum) { method getTweets (line 52) | public List getTweets() { method setTweets (line 56) | public void setTweets(List tweets) { method parse (line 60) | public static RepostList parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Scope.java type Scope (line 6) | public enum Scope { method Scope (line 115) | private Scope(String scope) { method value (line 119) | public String value() { method toString (line 123) | @Override FILE: src/main/java/com/belerweb/social/qq/connect/bean/SendPrivate.java type SendPrivate (line 3) | public enum SendPrivate { method SendPrivate (line 8) | private SendPrivate(Integer value) { method value (line 12) | public Integer value() { method toString (line 16) | @Override method parse (line 21) | public static SendPrivate parse(Integer value) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Tag.java class Tag (line 8) | public class Tag extends JsonBean { method Tag (line 10) | public Tag() {} method Tag (line 12) | private Tag(JSONObject jsonObject) { method getId (line 20) | public String getId() { method setId (line 24) | public void setId(String id) { method getName (line 28) | public String getName() { method setName (line 32) | public void setName(String name) { method parse (line 36) | public static Tag parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/TenpayAddress.java class TenpayAddress (line 8) | public class TenpayAddress { method getIndex (line 23) | public Integer getIndex() { method setIndex (line 27) | public void setIndex(Integer index) { method getRegionId (line 31) | public Integer getRegionId() { method setRegionId (line 35) | public void setRegionId(Integer regionId) { method getStreet (line 39) | public String getStreet() { method setStreet (line 43) | public void setStreet(String street) { method getZipcode (line 47) | public String getZipcode() { method setZipcode (line 51) | public void setZipcode(String zipcode) { method getMobile (line 55) | public String getMobile() { method setMobile (line 59) | public void setMobile(String mobile) { method getTel (line 63) | public String getTel() { method setTel (line 67) | public void setTel(String tel) { method getName (line 71) | public String getName() { method setName (line 75) | public void setName(String name) { method getCreated (line 79) | public Date getCreated() { method setCreated (line 83) | public void setCreated(Date created) { method getModified (line 87) | public Date getModified() { method setModified (line 91) | public void setModified(Date modified) { method getLastUsed (line 95) | public Date getLastUsed() { method setLastUsed (line 99) | public void setLastUsed(Date lastUsed) { method getUsedCount (line 103) | public Integer getUsedCount() { method setUsedCount (line 107) | public void setUsedCount(Integer usedCount) { method getTotal (line 111) | public Integer getTotal() { method setTotal (line 115) | public void setTotal(Integer total) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/TweetInfo.java class TweetInfo (line 10) | public class TweetInfo extends JsonBean { method TweetInfo (line 12) | public TweetInfo() {} method TweetInfo (line 14) | private TweetInfo(JSONObject jsonObject) { method getId (line 43) | public String getId() { method setId (line 47) | public void setId(String id) { method getCountryCode (line 51) | public String getCountryCode() { method setCountryCode (line 55) | public void setCountryCode(String countryCode) { method getProvinceCode (line 59) | public String getProvinceCode() { method setProvinceCode (line 63) | public void setProvinceCode(String provinceCode) { method getCityCode (line 67) | public String getCityCode() { method setCityCode (line 71) | public void setCityCode(String cityCode) { method getEmotionType (line 75) | public String getEmotionType() { method setEmotionType (line 79) | public void setEmotionType(String emotionType) { method getEmotionUrl (line 83) | public String getEmotionUrl() { method setEmotionUrl (line 87) | public void setEmotionUrl(String emotionUrl) { method getFrom (line 91) | public String getFrom() { method setFrom (line 95) | public void setFrom(String from) { method getFromUrl (line 99) | public String getFromUrl() { method setFromUrl (line 103) | public void setFromUrl(String fromUrl) { method getImage (line 107) | public String getImage() { method setImage (line 111) | public void setImage(String image) { method getGeo (line 115) | public String getGeo() { method setGeo (line 119) | public void setGeo(String geo) { method getLocation (line 123) | public String getLocation() { method setLocation (line 127) | public void setLocation(String location) { method getLongitude (line 131) | public Double getLongitude() { method setLongitude (line 135) | public void setLongitude(Double longitude) { method getLatitude (line 139) | public Double getLatitude() { method setLatitude (line 143) | public void setLatitude(Double latitude) { method getMusic (line 147) | public Music getMusic() { method setMusic (line 151) | public void setMusic(Music music) { method getOrigText (line 155) | public String getOrigText() { method setOrigText (line 159) | public void setOrigText(String origText) { method getSelf (line 163) | public Boolean getSelf() { method setSelf (line 167) | public void setSelf(Boolean self) { method getStatus (line 171) | public Integer getStatus() { method setStatus (line 175) | public void setStatus(Integer status) { method getText (line 179) | public String getText() { method setText (line 183) | public void setText(String text) { method getTimestamp (line 187) | public Date getTimestamp() { method setTimestamp (line 191) | public void setTimestamp(Date timestamp) { method getType (line 195) | public Integer getType() { method setType (line 199) | public void setType(Integer type) { method getVideo (line 203) | public Video getVideo() { method setVideo (line 207) | public void setVideo(Video video) { method getCount (line 211) | public Integer getCount() { method setCount (line 215) | public void setCount(Integer count) { method getmCount (line 219) | public Integer getmCount() { method setmCount (line 223) | public void setmCount(Integer mCount) { method getIsVip (line 227) | public Boolean getIsVip() { method setIsVip (line 231) | public void setIsVip(Boolean isVip) { method parse (line 235) | public static TweetInfo parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/User.java class User (line 11) | public class User extends JsonBean { method User (line 13) | public User() {} method User (line 15) | private User(JSONObject jsonObject) { method getNickname (line 56) | public String getNickname() { method setNickname (line 60) | public void setNickname(String nickname) { method getFigureUrl (line 67) | public String getFigureUrl() { method setFigureUrl (line 71) | public void setFigureUrl(String figureUrl) { method getFigureUrl1 (line 78) | public String getFigureUrl1() { method setFigureUrl1 (line 82) | public void setFigureUrl1(String figureUrl1) { method getFigureUrl2 (line 89) | public String getFigureUrl2() { method setFigureUrl2 (line 93) | public void setFigureUrl2(String figureUrl2) { method getFigureUrlQQ1 (line 100) | public String getFigureUrlQQ1() { method setFigureUrlQQ1 (line 104) | public void setFigureUrlQQ1(String figureUrlQQ1) { method getFigureUrlQQ2 (line 111) | public String getFigureUrlQQ2() { method setFigureUrlQQ2 (line 115) | public void setFigureUrlQQ2(String figureUrlQQ2) { method getGender (line 122) | public Gender getGender() { method setGender (line 126) | public void setGender(Gender gender) { method getIsYellowVip (line 133) | public Boolean getIsYellowVip() { method setIsYellowVip (line 137) | public void setIsYellowVip(Boolean isYellowVip) { method getVip (line 144) | public Boolean getVip() { method setVip (line 148) | public void setVip(Boolean vip) { method getYellowVipLevel (line 155) | public Integer getYellowVipLevel() { method setYellowVipLevel (line 159) | public void setYellowVipLevel(Integer yellowVipLevel) { method getLevel (line 166) | public Integer getLevel() { method setLevel (line 170) | public void setLevel(Integer level) { method getIsYellowYearVip (line 177) | public Boolean getIsYellowYearVip() { method setIsYellowYearVip (line 181) | public void setIsYellowYearVip(Boolean isYellowYearVip) { method getIsQQVip (line 188) | public Boolean getIsQQVip() { method setIsQQVip (line 192) | public void setIsQQVip(Boolean isQQVip) { method getQqVipLevel (line 199) | public Integer getQqVipLevel() { method setQqVipLevel (line 203) | public void setQqVipLevel(Integer qqVipLevel) { method getIsQQYearVip (line 210) | public Boolean getIsQQYearVip() { method setIsQQYearVip (line 214) | public void setIsQQYearVip(Boolean isQQYearVip) { method getIsLost (line 218) | public Boolean getIsLost() { method setIsLost (line 222) | public void setIsLost(Boolean isLost) { method getQqVipStart (line 229) | public Date getQqVipStart() { method setQqVipStart (line 233) | public void setQqVipStart(Date qqVipStart) { method getQqVipEnd (line 240) | public Date getQqVipEnd() { method setQqVipEnd (line 244) | public void setQqVipEnd(Date qqVipEnd) { method getQqVipPayway (line 251) | public Integer getQqVipPayway() { method setQqVipPayway (line 255) | public void setQqVipPayway(Integer qqVipPayway) { method getQqYearVipStart (line 262) | public Date getQqYearVipStart() { method setQqYearVipStart (line 266) | public void setQqYearVipStart(Date qqYearVipStart) { method getQqYearVipEnd (line 273) | public Date getQqYearVipEnd() { method setQqYearVipEnd (line 277) | public void setQqYearVipEnd(Date qqYearVipEnd) { method getQqYearVipPayway (line 284) | public Integer getQqYearVipPayway() { method setQqYearVipPayway (line 288) | public void setQqYearVipPayway(Integer qqYearVipPayway) { method getQqZuanhuangStart (line 295) | public Date getQqZuanhuangStart() { method setQqZuanhuangStart (line 299) | public void setQqZuanhuangStart(Date qqZuanhuangStart) { method getQqZuanhuangEnd (line 306) | public Date getQqZuanhuangEnd() { method setQqZuanhuangEnd (line 310) | public void setQqZuanhuangEnd(Date qqZuanhuangEnd) { method getQqZuanhuangPayway (line 317) | public Integer getQqZuanhuangPayway() { method setQqZuanhuangPayway (line 321) | public void setQqZuanhuangPayway(Integer qqZuanhuangPayway) { method getQqHaohuaStart (line 328) | public Date getQqHaohuaStart() { method setQqHaohuaStart (line 332) | public void setQqHaohuaStart(Date qqHaohuaStart) { method getQqHaohuaEnd (line 339) | public Date getQqHaohuaEnd() { method setQqHaohuaEnd (line 343) | public void setQqHaohuaEnd(Date qqHaohuaEnd) { method getQqHaohuaPayway (line 350) | public Integer getQqHaohuaPayway() { method setQqHaohuaPayway (line 354) | public void setQqHaohuaPayway(Integer qqHaohuaPayway) { method getQqSvipStart (line 361) | public Date getQqSvipStart() { method setQqSvipStart (line 365) | public void setQqSvipStart(Date qqSvipStart) { method getQqSvipEnd (line 372) | public Date getQqSvipEnd() { method setQqSvipEnd (line 376) | public void setQqSvipEnd(Date qqSvipEnd) { method getQqSvipPayway (line 383) | public Integer getQqSvipPayway() { method setQqSvipPayway (line 387) | public void setQqSvipPayway(Integer qqSvipPayway) { method getHistoryPayTime (line 394) | public Date getHistoryPayTime() { method setHistoryPayTime (line 398) | public void setHistoryPayTime(Date historyPayTime) { method getHistoryEndTime (line 405) | public Date getHistoryEndTime() { method setHistoryEndTime (line 409) | public void setHistoryEndTime(Date historyEndTime) { method parse (line 413) | public static User parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/Video.java class Video (line 8) | public class Video extends JsonBean { method Video (line 10) | public Video() {} method Video (line 12) | private Video(JSONObject jsonObject) { method getPicUrl (line 22) | public String getPicUrl() { method setPicUrl (line 26) | public void setPicUrl(String picUrl) { method getPlayer (line 30) | public String getPlayer() { method setPlayer (line 34) | public void setPlayer(String player) { method getRealUrl (line 38) | public String getRealUrl() { method setRealUrl (line 42) | public void setRealUrl(String realUrl) { method getShortUrl (line 46) | public String getShortUrl() { method setShortUrl (line 50) | public void setShortUrl(String shortUrl) { method getTitle (line 54) | public String getTitle() { method setTitle (line 58) | public void setTitle(String title) { method parse (line 62) | public static Video parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/connect/bean/WeiboUser.java class WeiboUser (line 15) | public class WeiboUser extends JsonBean { method WeiboUser (line 17) | public WeiboUser() {} method WeiboUser (line 19) | private WeiboUser(JSONObject jsonObject) { method getOpenId (line 62) | public String getOpenId() { method setOpenId (line 66) | public void setOpenId(String openId) { method getName (line 70) | public String getName() { method setName (line 74) | public void setName(String name) { method getNick (line 78) | public String getNick() { method setNick (line 82) | public void setNick(String nick) { method getRegTime (line 86) | public Date getRegTime() { method setRegTime (line 90) | public void setRegTime(Date regTime) { method getBirth (line 94) | public Date getBirth() { method setBirth (line 98) | public void setBirth(Date birth) { method getCountryCode (line 102) | public String getCountryCode() { method setCountryCode (line 106) | public void setCountryCode(String countryCode) { method getProvinceCode (line 110) | public String getProvinceCode() { method setProvinceCode (line 114) | public void setProvinceCode(String provinceCode) { method getCityCode (line 118) | public String getCityCode() { method setCityCode (line 122) | public void setCityCode(String cityCode) { method getCompanies (line 126) | public List getCompanies() { method setCompanies (line 130) | public void setCompanies(List companies) { method getEducations (line 134) | public List getEducations() { method setEducations (line 138) | public void setEducations(List educations) { method getFansNum (line 142) | public Integer getFansNum() { method setFansNum (line 146) | public void setFansNum(Integer fansNum) { method getFavNum (line 150) | public Integer getFavNum() { method setFavNum (line 154) | public void setFavNum(Integer favNum) { method getHead (line 158) | public String getHead() { method setHead (line 162) | public void setHead(String head) { method getHomeCountryCode (line 166) | public String getHomeCountryCode() { method setHomeCountryCode (line 170) | public void setHomeCountryCode(String homeCountryCode) { method getHomeProvinceCode (line 174) | public String getHomeProvinceCode() { method setHomeProvinceCode (line 178) | public void setHomeProvinceCode(String homeProvinceCode) { method getHomeCityCode (line 182) | public String getHomeCityCode() { method setHomeCityCode (line 186) | public void setHomeCityCode(String homeCityCode) { method getHometownCode (line 190) | public String getHometownCode() { method setHometownCode (line 194) | public void setHometownCode(String hometownCode) { method getHomepage (line 198) | public String getHomepage() { method setHomepage (line 202) | public void setHomepage(String homepage) { method getIdolNum (line 206) | public Integer getIdolNum() { method setIdolNum (line 210) | public void setIdolNum(Integer idolNum) { method getIndustryCode (line 214) | public String getIndustryCode() { method setIndustryCode (line 218) | public void setIndustryCode(String industryCode) { method getIntroduction (line 222) | public String getIntroduction() { method setIntroduction (line 226) | public void setIntroduction(String introduction) { method getIsEnt (line 230) | public Boolean getIsEnt() { method setIsEnt (line 234) | public void setIsEnt(Boolean isEnt) { method getIsMyBlack (line 238) | public Boolean getIsMyBlack() { method setIsMyBlack (line 242) | public void setIsMyBlack(Boolean isMyBlack) { method getIsMyFans (line 246) | public Boolean getIsMyFans() { method setIsMyFans (line 250) | public void setIsMyFans(Boolean isMyFans) { method getIsMyIdol (line 254) | public Boolean getIsMyIdol() { method setIsMyIdol (line 258) | public void setIsMyIdol(Boolean isMyIdol) { method getIsRealName (line 262) | public Boolean getIsRealName() { method setIsRealName (line 266) | public void setIsRealName(Boolean isRealName) { method getIsVip (line 270) | public Boolean getIsVip() { method setIsVip (line 274) | public void setIsVip(Boolean isVip) { method getLocation (line 278) | public String getLocation() { method setLocation (line 282) | public void setLocation(String location) { method getMutualFansNum (line 286) | public Integer getMutualFansNum() { method setMutualFansNum (line 290) | public void setMutualFansNum(Integer mutualFansNum) { method getSendPrivate (line 294) | public SendPrivate getSendPrivate() { method setSendPrivate (line 298) | public void setSendPrivate(SendPrivate sendPrivate) { method getGender (line 302) | public Gender getGender() { method setGender (line 306) | public void setGender(Gender gender) { method getTags (line 310) | public List getTags() { method setTags (line 314) | public void setTags(List tags) { method getTweets (line 318) | public List getTweets() { method setTweets (line 322) | public void setTweets(List tweets) { method getTweetNum (line 326) | public Integer getTweetNum() { method setTweetNum (line 330) | public void setTweetNum(Integer tweetNum) { method getVerifyInfo (line 334) | public String getVerifyInfo() { method setVerifyInfo (line 338) | public void setVerifyInfo(String verifyInfo) { method getExp (line 342) | public Integer getExp() { method setExp (line 346) | public void setExp(Integer exp) { method getLevel (line 350) | public Integer getLevel() { method setLevel (line 354) | public void setLevel(Integer level) { method getSeqId (line 358) | public String getSeqId() { method setSeqId (line 362) | public void setSeqId(String seqId) { method parse (line 366) | public static WeiboUser parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/qq/mail/api/Contact.java class Contact (line 51) | public class Contact { method Contact (line 67) | public Contact(String email, String password, Yundama yundama) { method get (line 74) | private List get(Group group) throws SocialException { method get (line 134) | public List get() throws SocialException { method login (line 154) | public String login() throws SocialException { method check (line 298) | public ValidationCode check() throws SocialException { method getValidationCode (line 330) | public byte[] getValidationCode() throws SocialException { method getValidationCode2 (line 359) | public byte[] getValidationCode2() throws SocialException { FILE: src/main/java/com/belerweb/social/qq/mail/bean/Address.java class Address (line 3) | public class Address { method getLabel (line 13) | public String getLabel() { method setLabel (line 17) | public void setLabel(String label) { method getType (line 21) | public String getType() { method setType (line 25) | public void setType(String type) { method getCountry (line 29) | public String getCountry() { method setCountry (line 33) | public void setCountry(String country) { method getProvince (line 37) | public String getProvince() { method setProvince (line 41) | public void setProvince(String province) { method getCity (line 45) | public String getCity() { method setCity (line 49) | public void setCity(String city) { method getStreet (line 53) | public String getStreet() { method setStreet (line 57) | public void setStreet(String street) { method getPostcode (line 61) | public String getPostcode() { method setPostcode (line 65) | public void setPostcode(String postcode) { FILE: src/main/java/com/belerweb/social/qq/mail/bean/Email.java class Email (line 3) | public class Email { method getLabel (line 9) | public String getLabel() { method setLabel (line 13) | public void setLabel(String label) { method getType (line 17) | public String getType() { method setType (line 21) | public void setType(String type) { method getEmail (line 25) | public String getEmail() { method setEmail (line 29) | public void setEmail(String email) { FILE: src/main/java/com/belerweb/social/qq/mail/bean/Group.java class Group (line 5) | public class Group { method getId (line 13) | public String getId() { method setId (line 17) | public void setId(String id) { method getType (line 21) | public String getType() { method setType (line 25) | public void setType(String type) { method getName (line 29) | public String getName() { method setName (line 33) | public void setName(String name) { method getUsers (line 37) | public List getUsers() { method setUsers (line 41) | public void setUsers(List users) { method getOwner (line 45) | public String getOwner() { method setOwner (line 49) | public void setOwner(String owner) { FILE: src/main/java/com/belerweb/social/qq/mail/bean/Org.java class Org (line 3) | public class Org { method getOrg1 (line 9) | public String getOrg1() { method setOrg1 (line 13) | public void setOrg1(String org1) { method getOrg2 (line 17) | public String getOrg2() { method setOrg2 (line 21) | public void setOrg2(String org2) { method getTitle (line 25) | public String getTitle() { method setTitle (line 29) | public void setTitle(String title) { FILE: src/main/java/com/belerweb/social/qq/mail/bean/Tel.java class Tel (line 3) | public class Tel { method getLabel (line 9) | public String getLabel() { method setLabel (line 13) | public void setLabel(String label) { method getType (line 17) | public String getType() { method setType (line 21) | public void setType(String type) { method getNum (line 25) | public String getNum() { method setNum (line 29) | public void setNum(String num) { FILE: src/main/java/com/belerweb/social/qq/mail/bean/User.java class User (line 5) | public class User { method getId (line 26) | public String getId() { method setId (line 30) | public void setId(String id) { method getLevel (line 34) | public String getLevel() { method setLevel (line 38) | public void setLevel(String level) { method getType (line 42) | public String getType() { method setType (line 46) | public void setType(String type) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getNickName (line 58) | public String getNickName() { method setNickName (line 62) | public void setNickName(String nickName) { method getFamilyName (line 66) | public String getFamilyName() { method setFamilyName (line 70) | public void setFamilyName(String familyName) { method getGivenName (line 74) | public String getGivenName() { method setGivenName (line 78) | public void setGivenName(String givenName) { method getRelate (line 82) | public String getRelate() { method setRelate (line 86) | public void setRelate(String relate) { method getUrl (line 90) | public String getUrl() { method setUrl (line 94) | public void setUrl(String url) { method getDate (line 98) | public String getDate() { method setDate (line 102) | public void setDate(String date) { method getBirthday (line 106) | public String getBirthday() { method setBirthday (line 110) | public void setBirthday(String birthday) { method getIm (line 114) | public String getIm() { method setIm (line 118) | public void setIm(String im) { method getCustom (line 122) | public String getCustom() { method setCustom (line 126) | public void setCustom(String custom) { method getNote (line 130) | public String getNote() { method setNote (line 134) | public void setNote(String note) { method getAddress (line 138) | public Address getAddress() { method setAddress (line 142) | public void setAddress(Address address) { method getOrg (line 146) | public Org getOrg() { method setOrg (line 150) | public void setOrg(Org org) { method getEmails (line 154) | public List getEmails() { method setEmails (line 158) | public void setEmails(List emails) { method getTels (line 162) | public List getTels() { method setTels (line 166) | public void setTels(List tels) { FILE: src/main/java/com/belerweb/social/qq/mail/bean/ValidationCode.java class ValidationCode (line 3) | public class ValidationCode { method ValidationCode (line 9) | public ValidationCode() {} method ValidationCode (line 11) | public ValidationCode(String response) { method getStatus (line 18) | public String getStatus() { method setStatus (line 22) | public void setStatus(String status) { method getCode (line 26) | public String getCode() { method setCode (line 30) | public void setCode(String code) { method getUid (line 34) | public String getUid() { method setUid (line 38) | public void setUid(String uid) { method need (line 42) | public boolean need() { FILE: src/main/java/com/belerweb/social/qq/qzone/api/Visitor.java class Visitor (line 35) | public class Visitor { method Visitor (line 50) | public Visitor(String qq, String password, Yundama yundama) { method openLogin (line 57) | private void openLogin() throws ClientProtocolException, IOException, ... method loginCheck (line 83) | private ValidationCode loginCheck() throws ClientProtocolException, IO... method getValidationCode (line 105) | private byte[] getValidationCode() throws ClientProtocolException, IOE... method login (line 121) | private void login() throws ClientProtocolException, IOException, Deco... method getSimple (line 190) | public JSONObject getSimple() throws SocialException { FILE: src/main/java/com/belerweb/social/qq/t/api/OAuth2.java class OAuth2 (line 11) | public final class OAuth2 extends API { method OAuth2 (line 13) | OAuth2(QQT t) { method authorize (line 24) | public String authorize() { method authorize (line 36) | public String authorize(String redirectUri) { method authorize (line 56) | public String authorize(String clientId, String redirectUri, String re... FILE: src/main/java/com/belerweb/social/qq/t/api/QQT.java class QQT (line 5) | public final class QQT extends SDK { method QQT (line 11) | public QQT(String clientId, String clientSecret) { method QQT (line 16) | public QQT(String clientId, String clientSecret, String redirectUri) { method getClientId (line 21) | public String getClientId() { method setClientId (line 25) | public void setClientId(String clientId) { method getClientSecret (line 29) | public String getClientSecret() { method setClientSecret (line 33) | public void setClientSecret(String clientSecret) { method getRedirectUri (line 37) | public String getRedirectUri() { method setRedirectUri (line 41) | public void setRedirectUri(String redirectUri) { FILE: src/main/java/com/belerweb/social/weibo/api/OAuth2.java class OAuth2 (line 19) | public final class OAuth2 extends API { method OAuth2 (line 21) | OAuth2(Weibo weibo) { method authorize (line 33) | public String authorize() { method authorize (line 47) | public String authorize(String redirectUri) { method authorize (line 67) | public String authorize(String clientId, String redirectUri, Scope[] s... method accessToken (line 88) | public Result accessToken(String code) { method accessToken (line 97) | public Result accessToken(String code, String redirectUri) { method accessToken (line 113) | public Result accessToken(String clientId, String clientS... method getTokenInfo (line 134) | public Result getTokenInfo(String accessToken) { method getOAuth2Token (line 156) | public void getOAuth2Token(String oauthConsumerKey, String oauthToken, method revokeOAuth2 (line 169) | public Result revokeOAuth2(String accessToken) { FILE: src/main/java/com/belerweb/social/weibo/api/User.java class User (line 17) | public final class User extends API { method User (line 19) | protected User(Weibo weibo) { method show (line 39) | public Result show(String source,... method domainShow (line 63) | public Result domainShow(String s... method counts (line 86) | public Result counts(String source, String accessToken, Li... FILE: src/main/java/com/belerweb/social/weibo/api/Weibo.java class Weibo (line 5) | public final class Weibo extends SDK { method Weibo (line 14) | public Weibo(String clientId, String clientSecret) { method Weibo (line 20) | public Weibo(String clientId, String clientSecret, String redirectUri) { method getOAuth2 (line 26) | public OAuth2 getOAuth2() { method getUser (line 34) | public User getUser() { method getClientId (line 42) | public String getClientId() { method setClientId (line 46) | public void setClientId(String clientId) { method getClientSecret (line 50) | public String getClientSecret() { method setClientSecret (line 54) | public void setClientSecret(String clientSecret) { method getRedirectUri (line 58) | public String getRedirectUri() { method setRedirectUri (line 62) | public void setRedirectUri(String redirectUri) { FILE: src/main/java/com/belerweb/social/weibo/bean/AccessToken.java class AccessToken (line 8) | public class AccessToken extends JsonBean { method AccessToken (line 10) | public AccessToken() {} method AccessToken (line 12) | private AccessToken(JSONObject jsonObject) { method getToken (line 24) | public String getToken() { method setToken (line 28) | public void setToken(String token) { method getExpiresIn (line 35) | public Long getExpiresIn() { method setExpiresIn (line 39) | public void setExpiresIn(Long expiresIn) { method getRemindIn (line 46) | public Long getRemindIn() { method setRemindIn (line 50) | public void setRemindIn(Long remindIn) { method getUid (line 57) | public String getUid() { method setUid (line 61) | public void setUid(String uid) { method parse (line 65) | public static AccessToken parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/Comment.java class Comment (line 16) | public class Comment extends JsonBean { method Comment (line 18) | public Comment() {} method Comment (line 20) | private Comment(JSONObject jsonObject) { method getId (line 37) | public String getId() { method setId (line 41) | public void setId(String id) { method getMid (line 48) | public String getMid() { method setMid (line 52) | public void setMid(String mid) { method getIdstr (line 59) | public String getIdstr() { method setIdstr (line 63) | public void setIdstr(String idstr) { method getCreatedAt (line 70) | public Date getCreatedAt() { method setCreatedAt (line 74) | public void setCreatedAt(Date createdAt) { method getText (line 81) | public String getText() { method setText (line 85) | public void setText(String text) { method getSource (line 92) | public String getSource() { method setSource (line 96) | public void setSource(String source) { method getUser (line 103) | public User getUser() { method setUser (line 107) | public void setUser(User user) { method getStatus (line 114) | public Status getStatus() { method setStatus (line 118) | public void setStatus(Status status) { method getReplyComment (line 125) | public Comment getReplyComment() { method setReplyComment (line 129) | public void setReplyComment(Comment replyComment) { method parse (line 133) | public static Comment parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/Display.java type Display (line 6) | public enum Display { method Display (line 35) | private Display(String display) { method value (line 39) | public String value() { method toString (line 43) | @Override FILE: src/main/java/com/belerweb/social/weibo/bean/Geo.java class Geo (line 14) | public class Geo extends JsonBean { method Geo (line 16) | public Geo() {} method Geo (line 18) | private Geo(JSONObject jsonObject) { method getLongitude (line 35) | public Double getLongitude() { method setLongitude (line 39) | public void setLongitude(Double longitude) { method getLatitude (line 46) | public Double getLatitude() { method setLatitude (line 50) | public void setLatitude(Double latitude) { method getCity (line 57) | public String getCity() { method setCity (line 61) | public void setCity(String city) { method getProvince (line 68) | public String getProvince() { method setProvince (line 72) | public void setProvince(String province) { method getCityName (line 79) | public String getCityName() { method setCityName (line 83) | public void setCityName(String cityName) { method getProvinceName (line 90) | public String getProvinceName() { method setProvinceName (line 94) | public void setProvinceName(String provinceName) { method getAddress (line 101) | public String getAddress() { method setAddress (line 105) | public void setAddress(String address) { method getPinyin (line 112) | public String getPinyin() { method setPinyin (line 116) | public void setPinyin(String pinyin) { method getMore (line 123) | public String getMore() { method setMore (line 127) | public void setMore(String more) { method parse (line 131) | public static Geo parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/Privacy.java class Privacy (line 11) | public class Privacy extends JsonBean { method Privacy (line 13) | public Privacy() {} method Privacy (line 15) | private Privacy(JSONObject jsonObject) { method getComment (line 30) | public Integer getComment() { method setComment (line 34) | public void setComment(Integer comment) { method getGeo (line 41) | public Integer getGeo() { method setGeo (line 45) | public void setGeo(Integer geo) { method getMessage (line 52) | public Integer getMessage() { method setMessage (line 56) | public void setMessage(Integer message) { method getRealname (line 63) | public Integer getRealname() { method setRealname (line 67) | public void setRealname(Integer realname) { method getBadge (line 74) | public Integer getBadge() { method setBadge (line 78) | public void setBadge(Integer badge) { method getMobile (line 85) | public Integer getMobile() { method setMobile (line 89) | public void setMobile(Integer mobile) { method getWebim (line 96) | public Integer getWebim() { method setWebim (line 100) | public void setWebim(Integer webim) { method parse (line 104) | public static Privacy parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/Remind.java class Remind (line 11) | public class Remind extends JsonBean { method Remind (line 13) | public Remind() {} method Remind (line 15) | private Remind(JSONObject jsonObject) { method getStatus (line 36) | public Integer getStatus() { method setStatus (line 40) | public void setStatus(Integer status) { method getFollower (line 47) | public Integer getFollower() { method setFollower (line 51) | public void setFollower(Integer follower) { method getCmt (line 58) | public Integer getCmt() { method setCmt (line 62) | public void setCmt(Integer cmt) { method getDm (line 69) | public Integer getDm() { method setDm (line 73) | public void setDm(Integer dm) { method getMentionStatus (line 80) | public Integer getMentionStatus() { method setMentionStatus (line 84) | public void setMentionStatus(Integer mentionStatus) { method getMentionCmt (line 91) | public Integer getMentionCmt() { method setMentionCmt (line 95) | public void setMentionCmt(Integer mentionCmt) { method getGroup (line 102) | public Integer getGroup() { method setGroup (line 106) | public void setGroup(Integer group) { method getPrivateGroup (line 113) | public Integer getPrivateGroup() { method setPrivateGroup (line 117) | public void setPrivateGroup(Integer privateGroup) { method getNotice (line 124) | public Integer getNotice() { method setNotice (line 128) | public void setNotice(Integer notice) { method getInvite (line 135) | public Integer getInvite() { method setInvite (line 139) | public void setInvite(Integer invite) { method getBadge (line 146) | public Integer getBadge() { method setBadge (line 150) | public void setBadge(Integer badge) { method getPhoto (line 157) | public Integer getPhoto() { method setPhoto (line 161) | public void setPhoto(Integer photo) { method getMsgbox (line 168) | public Integer getMsgbox() { method setMsgbox (line 172) | public void setMsgbox(Integer msgbox) { method parse (line 176) | public static Remind parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/Scope.java type Scope (line 8) | public enum Scope { method Scope (line 57) | private Scope(String scope) { method value (line 61) | public String value() { method toString (line 65) | @Override FILE: src/main/java/com/belerweb/social/weibo/bean/Status.java class Status (line 17) | public class Status extends JsonBean { method Status (line 19) | public Status() {} method Status (line 21) | private Status(JSONObject jsonObject) { method getId (line 53) | public String getId() { method setId (line 57) | public void setId(String id) { method getMid (line 64) | public String getMid() { method setMid (line 68) | public void setMid(String mid) { method getIdstr (line 75) | public String getIdstr() { method setIdstr (line 79) | public void setIdstr(String idstr) { method getCreatedAt (line 86) | public Date getCreatedAt() { method setCreatedAt (line 90) | public void setCreatedAt(Date createdAt) { method getText (line 97) | public String getText() { method setText (line 101) | public void setText(String text) { method getSource (line 108) | public String getSource() { method setSource (line 112) | public void setSource(String source) { method getFavorited (line 119) | public Boolean getFavorited() { method setFavorited (line 123) | public void setFavorited(Boolean favorited) { method getTruncated (line 130) | public Boolean getTruncated() { method setTruncated (line 134) | public void setTruncated(Boolean truncated) { method getInReplyToStatusId (line 141) | public String getInReplyToStatusId() { method setInReplyToStatusId (line 145) | public void setInReplyToStatusId(String inReplyToStatusId) { method getInReplyToUserId (line 152) | public String getInReplyToUserId() { method setInReplyToUserId (line 156) | public void setInReplyToUserId(String inReplyToUserId) { method getInReplyToScreenName (line 163) | public String getInReplyToScreenName() { method setInReplyToScreenName (line 167) | public void setInReplyToScreenName(String inReplyToScreenName) { method getThumbnailPic (line 174) | public String getThumbnailPic() { method setThumbnailPic (line 178) | public void setThumbnailPic(String thumbnailPic) { method getBmiddlePic (line 185) | public String getBmiddlePic() { method setBmiddlePic (line 189) | public void setBmiddlePic(String bmiddlePic) { method getOriginalPic (line 196) | public String getOriginalPic() { method setOriginalPic (line 200) | public void setOriginalPic(String originalPic) { method getGeo (line 207) | public Geo getGeo() { method setGeo (line 211) | public void setGeo(Geo geo) { method getUser (line 218) | public User getUser() { method setUser (line 222) | public void setUser(User user) { method getRetweetedStatus (line 229) | public Status getRetweetedStatus() { method setRetweetedStatus (line 233) | public void setRetweetedStatus(Status retweetedStatus) { method getRepostsCount (line 240) | public Integer getRepostsCount() { method setRepostsCount (line 244) | public void setRepostsCount(Integer repostsCount) { method getCommentsCount (line 251) | public Integer getCommentsCount() { method setCommentsCount (line 255) | public void setCommentsCount(Integer commentsCount) { method getAttitudesCount (line 262) | public Integer getAttitudesCount() { method setAttitudesCount (line 266) | public void setAttitudesCount(Integer attitudesCount) { method getMlevel (line 273) | public Integer getMlevel() { method setMlevel (line 277) | public void setMlevel(Integer mlevel) { method getVisible (line 284) | public Visible getVisible() { method setVisible (line 288) | public void setVisible(Visible visible) { method getPicUrls (line 295) | public List getPicUrls() { method setPicUrls (line 299) | public void setPicUrls(List picUrls) { method getAd (line 306) | public List getAd() { method setAd (line 310) | public void setAd(List ad) { method parse (line 314) | public static Status parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/TokenInfo.java class TokenInfo (line 8) | public class TokenInfo extends JsonBean { method TokenInfo (line 10) | public TokenInfo() {} method TokenInfo (line 12) | private TokenInfo(JSONObject jsonObject) { method getUid (line 25) | public String getUid() { method setUid (line 29) | public void setUid(String uid) { method getAppkey (line 36) | public String getAppkey() { method setAppkey (line 40) | public void setAppkey(String appkey) { method getScope (line 47) | public String getScope() { method setScope (line 51) | public void setScope(String scope) { method getCreateAt (line 58) | public Long getCreateAt() { method setCreateAt (line 62) | public void setCreateAt(Long createAt) { method getExpireIn (line 70) | public Long getExpireIn() { method setExpireIn (line 74) | public void setExpireIn(Long expireIn) { method parse (line 78) | public static TokenInfo parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/UrlShort.java class UrlShort (line 11) | public class UrlShort extends JsonBean { method UrlShort (line 13) | public UrlShort() {} method UrlShort (line 15) | private UrlShort(JSONObject jsonObject) { method getUrlShort (line 27) | public String getUrlShort() { method setUrlShort (line 31) | public void setUrlShort(String urlShort) { method getUrlLong (line 38) | public String getUrlLong() { method setUrlLong (line 42) | public void setUrlLong(String urlLong) { method getType (line 49) | public Integer getType() { method setType (line 53) | public void setType(Integer type) { method getResult (line 60) | public Boolean getResult() { method setResult (line 64) | public void setResult(Boolean result) { method parse (line 68) | public static UrlShort parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/User.java class User (line 18) | public class User extends JsonBean { method User (line 20) | public User() {} method User (line 22) | private User(JSONObject jsonObject) { method getId (line 63) | public String getId() { method setId (line 67) | public void setId(String id) { method getIdstr (line 74) | public String getIdstr() { method setIdstr (line 78) | public void setIdstr(String idstr) { method getScreenName (line 85) | public String getScreenName() { method setScreenName (line 89) | public void setScreenName(String screenName) { method getName (line 96) | public String getName() { method setName (line 100) | public void setName(String name) { method getProvince (line 107) | public Integer getProvince() { method setProvince (line 111) | public void setProvince(Integer province) { method getCity (line 118) | public Integer getCity() { method setCity (line 122) | public void setCity(Integer city) { method getLocation (line 129) | public String getLocation() { method setLocation (line 133) | public void setLocation(String location) { method getDescription (line 140) | public String getDescription() { method setDescription (line 144) | public void setDescription(String description) { method getUrl (line 151) | public String getUrl() { method setUrl (line 155) | public void setUrl(String url) { method getProfileImageUrl (line 162) | public String getProfileImageUrl() { method setProfileImageUrl (line 166) | public void setProfileImageUrl(String profileImageUrl) { method getProfileUrl (line 173) | public String getProfileUrl() { method setProfileUrl (line 177) | public void setProfileUrl(String profileUrl) { method getDomain (line 184) | public String getDomain() { method setDomain (line 188) | public void setDomain(String domain) { method getWeihao (line 195) | public String getWeihao() { method setWeihao (line 199) | public void setWeihao(String weihao) { method getGender (line 206) | public Gender getGender() { method setGender (line 210) | public void setGender(Gender gender) { method getFollowersCount (line 217) | public Integer getFollowersCount() { method setFollowersCount (line 221) | public void setFollowersCount(Integer followersCount) { method getFriendsCount (line 228) | public Integer getFriendsCount() { method setFriendsCount (line 232) | public void setFriendsCount(Integer friendsCount) { method getStatusesCount (line 239) | public Integer getStatusesCount() { method setStatusesCount (line 243) | public void setStatusesCount(Integer statusesCount) { method getFavouritesCount (line 250) | public Integer getFavouritesCount() { method setFavouritesCount (line 254) | public void setFavouritesCount(Integer favouritesCount) { method getCreatedAt (line 261) | public Date getCreatedAt() { method setCreatedAt (line 265) | public void setCreatedAt(Date createdAt) { method getFollowing (line 272) | public Boolean getFollowing() { method setFollowing (line 276) | public void setFollowing(Boolean following) { method getAllowAllActMsg (line 283) | public Boolean getAllowAllActMsg() { method setAllowAllActMsg (line 287) | public void setAllowAllActMsg(Boolean allowAllActMsg) { method getGeoEnabled (line 294) | public Boolean getGeoEnabled() { method setGeoEnabled (line 298) | public void setGeoEnabled(Boolean geoEnabled) { method getVerified (line 305) | public Boolean getVerified() { method setVerified (line 309) | public void setVerified(Boolean verified) { method getVerifiedType (line 316) | public Integer getVerifiedType() { method setVerifiedType (line 320) | public void setVerifiedType(Integer verifiedType) { method getRemark (line 327) | public String getRemark() { method setRemark (line 331) | public void setRemark(String remark) { method getStatus (line 338) | public Status getStatus() { method setStatus (line 342) | public void setStatus(Status status) { method getAllowAllComment (line 349) | public Boolean getAllowAllComment() { method setAllowAllComment (line 353) | public void setAllowAllComment(Boolean allowAllComment) { method getAvatarLarge (line 360) | public String getAvatarLarge() { method setAvatarLarge (line 364) | public void setAvatarLarge(String avatarLarge) { method getVerifiedReason (line 371) | public String getVerifiedReason() { method setVerifiedReason (line 375) | public void setVerifiedReason(String verifiedReason) { method getFollowMe (line 382) | public Boolean getFollowMe() { method setFollowMe (line 386) | public void setFollowMe(Boolean followMe) { method getOnlineStatus (line 393) | public OnlineStatus getOnlineStatus() { method setOnlineStatus (line 397) | public void setOnlineStatus(OnlineStatus onlineStatus) { method getBiFollowersCount (line 404) | public Integer getBiFollowersCount() { method setBiFollowersCount (line 408) | public void setBiFollowersCount(Integer biFollowersCount) { method getLang (line 415) | public String getLang() { method setLang (line 419) | public void setLang(String lang) { method parse (line 423) | public static User parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/UserCounts.java class UserCounts (line 11) | public class UserCounts extends JsonBean { method UserCounts (line 13) | public UserCounts() {} method UserCounts (line 15) | private UserCounts(JSONObject jsonObject) { method getId (line 28) | public String getId() { method setId (line 32) | public void setId(String id) { method getFollowersCount (line 39) | public Integer getFollowersCount() { method setFollowersCount (line 43) | public void setFollowersCount(Integer followersCount) { method getFriendsCount (line 50) | public Integer getFriendsCount() { method setFriendsCount (line 54) | public void setFriendsCount(Integer friendsCount) { method getStatusesCount (line 61) | public Integer getStatusesCount() { method setStatusesCount (line 65) | public void setStatusesCount(Integer statusesCount) { method getPrivateFriendsCount (line 72) | public Integer getPrivateFriendsCount() { method setPrivateFriendsCount (line 76) | public void setPrivateFriendsCount(Integer privateFriendsCount) { method parse (line 81) | public static UserCounts parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weibo/bean/Visible.java class Visible (line 11) | public class Visible extends JsonBean { method Visible (line 13) | public Visible() {} method Visible (line 15) | private Visible(JSONObject jsonObject) { method getType (line 25) | public Integer getType() { method setType (line 29) | public void setType(Integer type) { method getListId (line 36) | public Integer getListId() { method setListId (line 40) | public void setListId(Integer listId) { method parse (line 44) | public static Visible parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/api/Group.java class Group (line 21) | public class Group extends API { method Group (line 23) | protected Group(Weixin weixin) { method get (line 30) | public Result> get() { method get (line 39) | public Result> get(String ... method create (line 59) | public Result create(String nam... method create (line 71) | public Result create(String acc... method update (line 99) | public Result update(String id, String name) { method update (line 110) | public Result update(String accessToken, String id, String name) { method move (line 133) | public Result move(String openId, String groupId) { method move (line 144) | public Result move(String accessToken, String openId, String gr... FILE: src/main/java/com/belerweb/social/weixin/api/Media.java class Media (line 32) | public class Media extends API { method Media (line 34) | protected Media(Weixin weixin) { method upload (line 44) | public Result upload(MediaType ... method upload (line 64) | public Result upload(String acc... method get (line 96) | public Result get(String mediaI... method get (line 108) | public Result get(String access... FILE: src/main/java/com/belerweb/social/weixin/api/Menu.java class Menu (line 23) | public class Menu extends API { method Menu (line 25) | protected Menu(Weixin weixin) { method create (line 34) | public Result create(List... method create (line 47) | public Result create(String accessToken, List> get() { method get (line 106) | public Result> get(String a... method delete (line 127) | public Result delete() { method delete (line 136) | public Result delete(String accessToken) { FILE: src/main/java/com/belerweb/social/weixin/api/OAuth2.java class OAuth2 (line 16) | public final class OAuth2 extends API { method OAuth2 (line 18) | OAuth2(Weixin weixin) { method authorize (line 29) | public String authorize() { method authorize (line 40) | public String authorize(Boolean wechatRedirect) { method authorize (line 52) | public String authorize(String redirectUri) { method authorize (line 64) | public String authorize(String redirectUri, Boolean wechatRedirect) { method authorize (line 81) | public String authorize(String appId, String redirectUri, String respo... method authorizeLogin (line 112) | public String authorizeLogin(String state) { method accessToken (line 136) | public Result accessToken(String code) { method accessToken (line 148) | public Result accessToken(String appId, String secret, St... method accessToken (line 160) | public Result accessToken(String appId, String secret, St... method refreshAccessToken (line 178) | public Result refreshAccessToken(String refreshToken) { method refreshAccessToken (line 188) | public Result refreshAccessToken(String appId, String ref... method refreshAccessToken (line 199) | public Result refreshAccessToken(String appId, String gra... FILE: src/main/java/com/belerweb/social/weixin/api/User.java class User (line 24) | public class User extends API { method User (line 26) | protected User(Weixin weixin) { method snsapiUserInfo (line 38) | public Result snsapiUserInfo(Str... method userInfo (line 56) | public Result userInfo(String ac... method getFollowUsers (line 67) | public Result> getFollowUse... method getFollowUsers (line 76) | public Result> getFollowUse... method getFollowers (line 98) | public Result getFollowers() { method getFollowers (line 107) | public Result getFollowers(String accessToken) { method getFollowers (line 141) | public Result getFollowers(String accessToken, Str... FILE: src/main/java/com/belerweb/social/weixin/api/Weixin.java class Weixin (line 31) | public final class Weixin extends SDK { method Weixin (line 62) | public Weixin(String token) { method Weixin (line 73) | public Weixin(String appId, String secret) { method Weixin (line 89) | public Weixin(String appId, String secret, String token) { method Weixin (line 94) | public Weixin(String appid, String secret, String redirectUri, String ... method validate (line 109) | public boolean validate(String signature, String timestamp, String non... method signature (line 128) | public String signature(String... args) { method jsapiSignature (line 144) | public String jsapiSignature(String url, long timestamp, String nonce) { method getAppId (line 154) | public String getAppId() { method setAppId (line 158) | public void setAppId(String appId) { method getSecret (line 162) | public String getSecret() { method setSecret (line 166) | public void setSecret(String secret) { method getRedirectUri (line 170) | public String getRedirectUri() { method setRedirectUri (line 174) | public void setRedirectUri(String redirectUri) { method getAccessToken (line 186) | public synchronized AccessToken getAccessToken() { method getApiTicket (line 214) | public synchronized ApiTicket getApiTicket() { method getJsApiTicket (line 241) | public synchronized JSApiTicket getJsApiTicket() { method createQR (line 270) | public Result createQR(QRType type, Integer sceneId) { method createQR (line 285) | public Result createQR(String accessToken, QRType type, Inte... method sendCustomMessage (line 309) | public Result sendCustomMessage(Message message) { method sendCustomMessage (line 324) | public Result sendCustomMessage(String accessToken, Message m... method sendTemplateMessage (line 363) | public Result sendTemplateMessage(Message message) { method sendTemplateMessage (line 394) | public Result sendTemplateMessage(String accessToken, Message... method getToken (line 410) | public String getToken() { method setToken (line 414) | public void setToken(String token) { method getOAuth2 (line 418) | public OAuth2 getOAuth2() { method getUser (line 426) | public User getUser() { method getGroup (line 434) | public Group getGroup() { method getMedia (line 442) | public Media getMedia() { method getMenu (line 450) | public Menu getMenu() { FILE: src/main/java/com/belerweb/social/weixin/bean/AccessToken.java class AccessToken (line 11) | public class AccessToken extends JsonBean { method AccessToken (line 13) | public AccessToken() {} method AccessToken (line 15) | private AccessToken(JSONObject jsonObject) { method getToken (line 29) | public String getToken() { method setToken (line 33) | public void setToken(String token) { method getExpiresIn (line 40) | public Long getExpiresIn() { method setExpiresIn (line 44) | public void setExpiresIn(Long expiresIn) { method getRefreshToken (line 51) | public String getRefreshToken() { method setRefreshToken (line 55) | public void setRefreshToken(String refreshToken) { method getOpenId (line 62) | public String getOpenId() { method setOpenId (line 66) | public void setOpenId(String openId) { method getScope (line 73) | public Scope getScope() { method setScope (line 77) | public void setScope(Scope scope) { method getUnionid (line 81) | public String getUnionid() { method setUnionid (line 85) | public void setUnionid(String unionid) { method parse (line 89) | public static AccessToken parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/ApiTicket.java class ApiTicket (line 11) | public class ApiTicket extends JsonBean { method ApiTicket (line 13) | public ApiTicket() {} method ApiTicket (line 15) | private ApiTicket(JSONObject jsonObject) { method getTicket (line 22) | public String getTicket() { method setTicket (line 26) | public void setTicket(String ticket) { method getExpiresIn (line 30) | public Long getExpiresIn() { method setExpiresIn (line 34) | public void setExpiresIn(Long expiresIn) { method parse (line 38) | public static ApiTicket parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/Article.java class Article (line 6) | public class Article { method getTitle (line 16) | public String getTitle() { method setTitle (line 20) | public void setTitle(String title) { method getDescription (line 27) | public String getDescription() { method setDescription (line 31) | public void setDescription(String description) { method getPicUrl (line 38) | public String getPicUrl() { method setPicUrl (line 42) | public void setPicUrl(String picUrl) { method getUrl (line 49) | public String getUrl() { method setUrl (line 53) | public void setUrl(String url) { FILE: src/main/java/com/belerweb/social/weixin/bean/EventType.java type EventType (line 7) | public enum EventType { method EventType (line 41) | private EventType(String type) { method value (line 45) | public String value() { method toString (line 49) | @Override method parse (line 54) | public static EventType parse(Object val) { FILE: src/main/java/com/belerweb/social/weixin/bean/GetFollowersResult.java class GetFollowersResult (line 15) | public class GetFollowersResult extends JsonBean { method GetFollowersResult (line 17) | public GetFollowersResult() {} method GetFollowersResult (line 19) | private GetFollowersResult(JSONObject jsonObject) { method getTotal (line 31) | public Integer getTotal() { method setTotal (line 35) | public void setTotal(Integer total) { method getCount (line 42) | public Integer getCount() { method setCount (line 46) | public void setCount(Integer count) { method getOpenIds (line 53) | public List getOpenIds() { method setOpenIds (line 57) | public void setOpenIds(List openIds) { method getNextOpenid (line 64) | public String getNextOpenid() { method setNextOpenid (line 68) | public void setNextOpenid(String nextOpenid) { method parse (line 72) | public static GetFollowersResult parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/Group.java class Group (line 11) | public class Group extends JsonBean { method Group (line 13) | public Group() {} method Group (line 15) | private Group(JSONObject jsonObject) { method getId (line 26) | public String getId() { method setId (line 30) | public void setId(String id) { method getName (line 37) | public String getName() { method setName (line 41) | public void setName(String name) { method getCount (line 48) | public Integer getCount() { method setCount (line 52) | public void setCount(Integer count) { method parse (line 56) | public static Group parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/JSApiTicket.java class JSApiTicket (line 11) | public class JSApiTicket extends JsonBean { method JSApiTicket (line 13) | public JSApiTicket() {} method JSApiTicket (line 15) | private JSApiTicket(JSONObject jsonObject) { method getTicket (line 22) | public String getTicket() { method setTicket (line 26) | public void setTicket(String ticket) { method getExpiresIn (line 30) | public Long getExpiresIn() { method setExpiresIn (line 34) | public void setExpiresIn(Long expiresIn) { method parse (line 38) | public static JSApiTicket parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/Media.java class Media (line 7) | public class Media { method getId (line 14) | public String getId() { method setId (line 18) | public void setId(String id) { method getName (line 22) | public String getName() { method setName (line 26) | public void setName(String name) { method getContentType (line 30) | public String getContentType() { method setContentType (line 34) | public void setContentType(String contentType) { method getContent (line 38) | public byte[] getContent() { method setContent (line 42) | public void setContent(byte[] content) { FILE: src/main/java/com/belerweb/social/weixin/bean/MediaType.java type MediaType (line 7) | public enum MediaType { method MediaType (line 41) | private MediaType(String type) { method value (line 45) | public String value() { method toString (line 49) | @Override method contentType (line 54) | public String contentType() { FILE: src/main/java/com/belerweb/social/weixin/bean/Menu.java class Menu (line 14) | public class Menu extends JsonBean { method Menu (line 16) | public Menu() {} method Menu (line 18) | private Menu(JSONObject jsonObject) { method getType (line 28) | public MenuType getType() { method setType (line 32) | public void setType(MenuType type) { method getKey (line 36) | public String getKey() { method setKey (line 40) | public void setKey(String key) { method getUrl (line 44) | public String getUrl() { method setUrl (line 48) | public void setUrl(String url) { method getName (line 52) | public String getName() { method setName (line 56) | public void setName(String name) { method getSubs (line 60) | public List getSubs() { method setSubs (line 64) | public void setSubs(List subs) { method parse (line 68) | public static Menu parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/MenuType.java type MenuType (line 7) | public enum MenuType { method MenuType (line 53) | private MenuType(String type) { method value (line 57) | public String value() { method toString (line 61) | @Override method parse (line 66) | public static MenuType parse(Object val) { FILE: src/main/java/com/belerweb/social/weixin/bean/Message.java class Message (line 18) | public class Message extends JsonBean { method Message (line 20) | public Message() {} method Message (line 22) | public Message(MsgType msgType) { method Message (line 26) | private Message(JSONObject jsonObject) { method getMsgId (line 67) | public Long getMsgId() { method setMsgId (line 71) | public void setMsgId(Long msgId) { method getFromUser (line 78) | public String getFromUser() { method setFromUser (line 82) | public void setFromUser(String fromUser) { method getToUser (line 89) | public String getToUser() { method setToUser (line 93) | public void setToUser(String toUser) { method getCreateTime (line 100) | public Date getCreateTime() { method setCreateTime (line 104) | public void setCreateTime(Date createTime) { method getMsgType (line 111) | public MsgType getMsgType() { method setMsgType (line 115) | public void setMsgType(MsgType msgType) { method getContent (line 122) | public String getContent() { method setContent (line 126) | public void setContent(String content) { method getMediaId (line 133) | public String getMediaId() { method setMediaId (line 137) | public void setMediaId(String mediaId) { method getPicUrl (line 144) | public String getPicUrl() { method setPicUrl (line 148) | public void setPicUrl(String picUrl) { method getVoiceType (line 155) | public VoiceType getVoiceType() { method setVoiceType (line 159) | public void setVoiceType(VoiceType voiceType) { method getRecognition (line 167) | public String getRecognition() { method setRecognition (line 171) | public void setRecognition(String recognition) { method getThumbMediaId (line 178) | public String getThumbMediaId() { method setThumbMediaId (line 182) | public void setThumbMediaId(String thumbMediaId) { method getLon (line 189) | public Double getLon() { method setLon (line 193) | public void setLon(Double lon) { method getLat (line 200) | public Double getLat() { method setLat (line 204) | public void setLat(Double lat) { method getScale (line 211) | public Integer getScale() { method setScale (line 215) | public void setScale(Integer scale) { method getLabel (line 222) | public String getLabel() { method setLabel (line 226) | public void setLabel(String label) { method getTitle (line 233) | public String getTitle() { method setTitle (line 237) | public void setTitle(String title) { method getDescription (line 244) | public String getDescription() { method setDescription (line 248) | public void setDescription(String description) { method getUrl (line 255) | public String getUrl() { method setUrl (line 259) | public void setUrl(String url) { method getMusicUrl (line 266) | public String getMusicUrl() { method setMusicUrl (line 270) | public void setMusicUrl(String musicUrl) { method getHqMusicUrl (line 277) | public String getHqMusicUrl() { method setHqMusicUrl (line 281) | public void setHqMusicUrl(String hqMusicUrl) { method getEventType (line 288) | public EventType getEventType() { method setEventType (line 292) | public void setEventType(EventType eventType) { method getEventKey (line 299) | public String getEventKey() { method setEventKey (line 303) | public void setEventKey(String eventKey) { method getTicket (line 312) | public String getTicket() { method setTicket (line 316) | public void setTicket(String ticket) { method getPrecision (line 323) | public Double getPrecision() { method setPrecision (line 327) | public void setPrecision(Double precision) { method getArticles (line 334) | public List
getArticles() { method setArticles (line 338) | public void setArticles(List
articles) { method getTemplateId (line 345) | public String getTemplateId() { method setTemplateId (line 349) | public void setTemplateId(String templateId) { method getTopColor (line 356) | public String getTopColor() { method setTopColor (line 360) | public void setTopColor(String topColor) { method getVariables (line 369) | public List getVariables() { method setVariables (line 376) | public void setVariables(List variables) { method addVariable (line 380) | public Message addVariable(Variable variable) { method toXML (line 388) | public String toXML() { method toJSON (line 443) | public String toJSON() { method parse (line 513) | public static Message parse(String xml) { method parse (line 517) | public static Message parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/MsgType.java type MsgType (line 7) | public enum MsgType { method MsgType (line 71) | private MsgType(String type) { method value (line 75) | public String value() { method toString (line 79) | @Override method parse (line 84) | public static MsgType parse(Object val) { FILE: src/main/java/com/belerweb/social/weixin/bean/QRCreation.java class QRCreation (line 5) | public class QRCreation { method getType (line 11) | public QRType getType() { method setType (line 15) | public void setType(QRType type) { method getExpireSeconds (line 19) | public Integer getExpireSeconds() { method setExpireSeconds (line 23) | public void setExpireSeconds(Integer expireSeconds) { method getSceneId (line 27) | public Integer getSceneId() { method setSceneId (line 31) | public void setSceneId(Integer sceneId) { method toString (line 35) | @Override FILE: src/main/java/com/belerweb/social/weixin/bean/QRTicket.java class QRTicket (line 11) | public class QRTicket extends JsonBean { method QRTicket (line 13) | public QRTicket() {} method QRTicket (line 15) | private QRTicket(JSONObject jsonObject) { method getTicket (line 25) | public String getTicket() { method setTicket (line 29) | public void setTicket(String ticket) { method getQRUrl (line 36) | public String getQRUrl() { method getExpireSeconds (line 43) | public Integer getExpireSeconds() { method setExpireSeconds (line 47) | public void setExpireSeconds(Integer expireSeconds) { method parse (line 51) | public static QRTicket parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/QRType.java type QRType (line 7) | public enum QRType { method QRType (line 21) | private QRType(String type) { method value (line 25) | public String value() { method toString (line 29) | @Override method parse (line 34) | public static QRType parse(Object val) { FILE: src/main/java/com/belerweb/social/weixin/bean/Scope.java type Scope (line 7) | public enum Scope { method Scope (line 26) | private Scope(String scope) { method value (line 30) | public String value() { method toString (line 34) | @Override method parse (line 39) | public static Scope parse(Object val) { FILE: src/main/java/com/belerweb/social/weixin/bean/User.java class User (line 15) | public class User extends JsonBean { method User (line 17) | public User() {} method User (line 19) | private User(JSONObject jsonObject) { method getOpenId (line 39) | public String getOpenId() { method setOpenId (line 43) | public void setOpenId(String openId) { method getNickname (line 50) | public String getNickname() { method setNickname (line 54) | public void setNickname(String nickname) { method getGender (line 61) | public Gender getGender() { method setGender (line 65) | public void setGender(Gender gender) { method getProvince (line 72) | public String getProvince() { method setProvince (line 76) | public void setProvince(String province) { method getCity (line 83) | public String getCity() { method setCity (line 87) | public void setCity(String city) { method getCountry (line 94) | public String getCountry() { method setCountry (line 98) | public void setCountry(String country) { method getPrivilege (line 105) | public List getPrivilege() { method setPrivilege (line 109) | public void setPrivilege(List privilege) { method getLanguage (line 116) | public String getLanguage() { method setLanguage (line 120) | public void setLanguage(String language) { method getHeadImgUrl (line 127) | public String getHeadImgUrl() { method setHeadImgUrl (line 131) | public void setHeadImgUrl(String headImgUrl) { method getSubscribe (line 138) | public Boolean getSubscribe() { method setSubscribe (line 142) | public void setSubscribe(Boolean subscribe) { method getSubscribeTime (line 149) | public Date getSubscribeTime() { method setSubscribeTime (line 153) | public void setSubscribeTime(Date subscribeTime) { method getUnionID (line 162) | public String getUnionID() { method setUnionID (line 166) | public void setUnionID(String unionID) { method parse (line 170) | public static User parse(JSONObject jsonObject) { FILE: src/main/java/com/belerweb/social/weixin/bean/Variable.java class Variable (line 8) | public class Variable { method Variable (line 14) | public Variable() {} method Variable (line 16) | public Variable(String name, String value) { method Variable (line 21) | public Variable(String name, String value, String color) { method getName (line 30) | public String getName() { method setName (line 34) | public void setName(String name) { method getValue (line 41) | public String getValue() { method setValue (line 45) | public void setValue(String value) { method getColor (line 52) | public String getColor() { method setColor (line 56) | public void setColor(String color) { FILE: src/main/java/com/belerweb/social/weixin/bean/VoiceType.java type VoiceType (line 7) | public enum VoiceType { method VoiceType (line 21) | private VoiceType(String type) { method value (line 25) | public String value() { method toString (line 29) | @Override method parse (line 34) | public static VoiceType parse(Object val) { FILE: src/test/java/com/belerweb/social/SDKTest.java class SDKTest (line 10) | public class SDKTest extends TestConfig { method testLonLatToAddress (line 14) | @Test FILE: src/test/java/com/belerweb/social/TestConfig.java class TestConfig (line 9) | public class TestConfig { method initialize (line 15) | @Before FILE: src/test/java/com/belerweb/social/captcha/api/YundamaTest.java class YundamaTest (line 11) | public class YundamaTest { method testDecode (line 15) | @Test FILE: src/test/java/com/belerweb/social/mail/api/POP3Test.java class POP3Test (line 7) | public class POP3Test { method testDownload (line 9) | @Test FILE: src/test/java/com/belerweb/social/qq/connect/api/OAuth2Test.java class OAuth2Test (line 13) | public class OAuth2Test extends TestConfig { method testAuthorize (line 17) | @Test method testAuthorizeWap (line 24) | @Test method testAccessToken (line 31) | @Test method testAccessTokenWap (line 43) | @Test method testOpenId (line 55) | @Test method testOpenIdWap (line 63) | @Test method testRefreshAccessToken (line 71) | @Test method testRefreshAccessTokenWap (line 79) | @Test FILE: src/test/java/com/belerweb/social/qq/connect/api/UserTest.java class UserTest (line 11) | public class UserTest extends TestConfig { method testGetUserInfo (line 14) | @Test method testGetSimpleUserInfo (line 25) | @Test FILE: src/test/java/com/belerweb/social/weibo/api/OAuth2Test.java class OAuth2Test (line 13) | public class OAuth2Test extends TestConfig { method testAuthorize (line 20) | @Test method testAccessToken (line 30) | @Test method testGetTokenInfo (line 42) | @Test method testRevokeOAuth2 (line 50) | @Test FILE: src/test/java/com/belerweb/social/weibo/api/UserTest.java class UserTest (line 15) | public class UserTest extends TestConfig { method testShow (line 19) | @Test method testDomainShow (line 28) | @Test method testCounts (line 36) | @Test FILE: src/test/java/com/belerweb/social/weixin/api/GroupTest.java class GroupTest (line 16) | public class GroupTest extends TestConfig { method testCreate (line 19) | @Test method testGet (line 26) | @Test method testUpdate (line 35) | @Test method testMove (line 42) | @Test FILE: src/test/java/com/belerweb/social/weixin/api/MediaTest.java class MediaTest (line 16) | public class MediaTest extends TestConfig { method testUpload (line 19) | @Test method testGet (line 32) | @Test FILE: src/test/java/com/belerweb/social/weixin/api/MenuTest.java class MenuTest (line 16) | public class MenuTest extends TestConfig { method testGet (line 18) | @Test method testDelete (line 24) | @Test method testCreate (line 30) | @Test method testCreate1 (line 52) | @Test FILE: src/test/java/com/belerweb/social/weixin/api/OAuth2Test.java class OAuth2Test (line 12) | public class OAuth2Test extends TestConfig { method testAuthorize (line 15) | @Test method testAccessToken (line 22) | @Test method testRefreshAccessToken (line 34) | @Test FILE: src/test/java/com/belerweb/social/weixin/api/UserTest.java class UserTest (line 13) | public class UserTest extends TestConfig { method testSnsapiUserInfo (line 17) | @Test method testUserInfo (line 27) | @Test method testGetFollowUsers (line 36) | @Test FILE: src/test/java/com/belerweb/social/weixin/api/WeixinTest.java class WeixinTest (line 25) | public class WeixinTest extends TestConfig { method testGetAccessToken (line 28) | @Test method testGetJSApiTicket (line 35) | @Test method testGetApiTicket (line 42) | @Test method testSignature (line 49) | @Test method testJsApiSignature (line 58) | @Test method testCreateQR (line 67) | @Test method testCreateQR2 (line 74) | @Test method testSendCustomMessage (line 82) | @Test method testSendTemplateMessage (line 91) | @Test method testSendTemplateMessage1 (line 106) | @Test