├── .idea └── vcs.xml ├── README.md ├── lib ├── wechat-1.0.1.jar └── 依赖jar包 │ ├── dom4j-1.6.1.jar │ ├── fastjson-1.1.15.jar │ ├── log4j.jar │ ├── xpp3-1.1.4c.jar │ └── xstream-1.4.7.jar └── source └── wechatSource ├── .classpath ├── .project ├── .settings ├── .svn │ ├── entries │ └── text-base │ │ ├── org.eclipse.core.resources.prefs.svn-base │ │ └── org.eclipse.jdt.core.prefs.svn-base ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── .svn ├── entries └── text-base │ ├── .classpath.svn-base │ └── .project.svn-base ├── bin ├── .svn │ ├── entries │ └── text-base │ │ └── test.txt.svn-base ├── org │ ├── wecaht │ │ └── user │ │ │ └── menum │ │ │ └── AuthType.class │ └── wechat │ │ ├── auth │ │ ├── conn │ │ │ └── AuthUtils.class │ │ ├── request │ │ │ ├── AbstractRequest.class │ │ │ ├── AuthCodeRequest.class │ │ │ ├── AuthTokenRequest.class │ │ │ ├── AuthUserRequest.class │ │ │ └── RefreshTokenRequest.class │ │ └── response │ │ │ ├── AuthTokenResponse.class │ │ │ └── AuthUserInfo.class │ │ ├── common │ │ ├── conn │ │ │ ├── Connection$1.class │ │ │ ├── Connection.class │ │ │ └── MyX509TrustManager.class │ │ ├── entity │ │ │ ├── event │ │ │ │ ├── BasicEvent.class │ │ │ │ ├── ClickEvent.class │ │ │ │ ├── LocationEvent.class │ │ │ │ ├── ScanEvent.class │ │ │ │ ├── SubscribeEvent.class │ │ │ │ ├── ViewEvent.class │ │ │ │ └── VoiceResult.class │ │ │ ├── req │ │ │ │ ├── BasicMsg.class │ │ │ │ ├── BasicMsgUserInfo.class │ │ │ │ ├── ImageMsg.class │ │ │ │ ├── LinkMsg.class │ │ │ │ ├── LocationMsg.class │ │ │ │ ├── TextMsg.class │ │ │ │ ├── VideoMsg.class │ │ │ │ └── VoiceMsg.class │ │ │ ├── resp │ │ │ │ ├── RespBasicMsg.class │ │ │ │ ├── RespCustomMsg.class │ │ │ │ ├── RespImgMsg.class │ │ │ │ ├── RespMusicMsg.class │ │ │ │ ├── RespNewsMsg.class │ │ │ │ ├── RespTextMsg.class │ │ │ │ ├── RespVideoMsg.class │ │ │ │ ├── RespVoiceMsg.class │ │ │ │ └── bean │ │ │ │ │ ├── Articles.class │ │ │ │ │ ├── Image.class │ │ │ │ │ ├── Item.class │ │ │ │ │ ├── Music.class │ │ │ │ │ ├── Text.class │ │ │ │ │ ├── Video.class │ │ │ │ │ └── Voice.class │ │ │ └── results │ │ │ │ ├── AccessToken.class │ │ │ │ ├── BaseXmlObj.class │ │ │ │ ├── JsonResult.class │ │ │ │ ├── ResultState.class │ │ │ │ └── WechatResult.class │ │ ├── handler │ │ │ ├── BasicXmlHandler.class │ │ │ ├── MsgHandler.class │ │ │ ├── ReqMsgHandler.class │ │ │ └── impl │ │ │ │ ├── BasicXmlHandlerImpl.class │ │ │ │ └── DefaultReqMsgDispose.class │ │ ├── test │ │ │ ├── TestConnection.class │ │ │ ├── TestConvertXMLUtils.class │ │ │ ├── TestJsonString.class │ │ │ └── TestMsgHandler.class │ │ └── utils │ │ │ ├── CharsetUtils.class │ │ │ ├── Constants.class │ │ │ ├── ConvertJsonUtils.class │ │ │ ├── ConvertXMLUtils$MyDoubleCoverter.class │ │ │ ├── ConvertXMLUtils$MyFloatCoverter.class │ │ │ ├── ConvertXMLUtils$MyIntCoverter.class │ │ │ ├── ConvertXMLUtils$MyLongCoverter.class │ │ │ ├── ConvertXMLUtils.class │ │ │ ├── EncryptUtils.class │ │ │ ├── PropertiesUtils.class │ │ │ ├── SHA1.class │ │ │ ├── Signature.class │ │ │ ├── WStringUtils.class │ │ │ ├── XStreamFactory$1$1.class │ │ │ ├── XStreamFactory$1.class │ │ │ └── XStreamFactory.class │ │ ├── count │ │ ├── conn │ │ │ └── CountConn.class │ │ ├── entity │ │ │ ├── InterAnlyseEntity.class │ │ │ ├── MsgAnalyseEntity.class │ │ │ ├── NewsAnlyseEntity.class │ │ │ └── UserAnlyseEntity.class │ │ └── test │ │ │ └── TestCountConn.class │ │ ├── coupon │ │ ├── request │ │ │ ├── QueryCouponStock.class │ │ │ └── SendCouponRequest.class │ │ └── respose │ │ │ └── CouponRespose.class │ │ ├── custom │ │ ├── conn │ │ │ └── CustomConn.class │ │ ├── entity │ │ │ ├── BasicMsg.class │ │ │ ├── CVideo.class │ │ │ ├── ImageCustom.class │ │ │ ├── MusicCustom.class │ │ │ ├── News.class │ │ │ ├── NewsCustom.class │ │ │ ├── SessionEntity.class │ │ │ ├── TextCustom.class │ │ │ ├── VideoCustom.class │ │ │ ├── VoiceCustom.class │ │ │ └── results │ │ │ │ ├── CustomTalkRecord.class │ │ │ │ ├── CustonInfo.class │ │ │ │ ├── LinekFlist.class │ │ │ │ └── OnLineSession.class │ │ ├── handler │ │ │ └── CustomHandler.class │ │ └── test │ │ │ ├── TestCustomConn.class │ │ │ └── TestCustomHandler.class │ │ ├── device │ │ ├── conn │ │ │ └── SwayConnection.class │ │ ├── convert │ │ │ └── SwayConvertUtils.class │ │ ├── request │ │ │ ├── DeviceIdentifier.class │ │ │ ├── EditPagerRequest.class │ │ │ └── PageRequest.class │ │ └── response │ │ │ ├── Apply.class │ │ │ ├── ApplyResult.class │ │ │ ├── BeaconInfo.class │ │ │ ├── BeaconInfoResponse.class │ │ │ ├── BeaconInfoResult.class │ │ │ ├── CountData.class │ │ │ ├── CountDataResponse.class │ │ │ ├── DeviceItem.class │ │ │ ├── DevicesData.class │ │ │ ├── GreaterResult.class │ │ │ ├── Less500Result.class │ │ │ ├── PageResult.class │ │ │ ├── PagerResponse.class │ │ │ ├── QueryPager.class │ │ │ ├── QueryResponse.class │ │ │ └── SearchResult.class │ │ ├── material │ │ ├── conn │ │ │ └── MeaterConn.class │ │ ├── result │ │ │ ├── CountEntity.class │ │ │ ├── MaterMsg.class │ │ │ ├── MeterResult.class │ │ │ ├── NewsItem.class │ │ │ ├── NewsList.class │ │ │ ├── OtherItem.class │ │ │ └── OtherList.class │ │ └── test │ │ │ └── TestMaterialConn.class │ │ ├── menu │ │ ├── entity │ │ │ ├── BasicMenu.class │ │ │ ├── ClickMenu.class │ │ │ ├── GroupButton.class │ │ │ ├── LocationSelect.class │ │ │ ├── Menu.class │ │ │ ├── MenuAllInfo.class │ │ │ ├── PicSysphoto.class │ │ │ ├── PicWeixin.class │ │ │ ├── PicphotoOralbum.class │ │ │ ├── ReturnMenu.class │ │ │ ├── ScanPush.class │ │ │ ├── ViewMenu.class │ │ │ └── WaitMsg.class │ │ ├── test │ │ │ └── TestMenuConnection.class │ │ └── utils │ │ │ └── MenuConnection.class │ │ ├── msg │ │ ├── conn │ │ │ └── MessageConn.class │ │ ├── entity │ │ │ └── NewsEntity.class │ │ ├── result │ │ │ ├── MsgResult.class │ │ │ ├── SendStatus.class │ │ │ └── UploadNews.class │ │ ├── templet │ │ │ ├── BaseTemplet.class │ │ │ └── LogisticsThemple.class │ │ └── test │ │ │ ├── TestLogisticsThemple.class │ │ │ └── TestMsgConn.class │ │ ├── pay │ │ ├── annotation │ │ │ └── NotSign.class │ │ ├── conn │ │ │ └── PayConnection.class │ │ ├── handler │ │ │ └── PayHandler.class │ │ ├── request │ │ │ ├── BasicPayParams.class │ │ │ ├── CloseorderRequest.class │ │ │ ├── DownloadBillRequest.class │ │ │ ├── QueryOrderRequet.class │ │ │ ├── RedBackRequest.class │ │ │ ├── RefundRequest.class │ │ │ ├── RefundqueryRequest.class │ │ │ ├── ReportRequest.class │ │ │ ├── ShortUrlRequest.class │ │ │ └── UnifiedOrderRequest.class │ │ ├── response │ │ │ ├── BasicReturnSuccess.class │ │ │ ├── JSResponse.class │ │ │ ├── PayNoticeResponse.class │ │ │ ├── PayResponseResult.class │ │ │ ├── QueryOrderResultSuccess.class │ │ │ ├── RedBackResultSuccess.class │ │ │ ├── RedBackReturnSuccess.class │ │ │ ├── RefundResponse.class │ │ │ ├── RefundqueryResponse.class │ │ │ ├── ReportResponse.class │ │ │ ├── ShortUrlResponse.class │ │ │ ├── TicketResponse.class │ │ │ ├── UnifiedNoticeResponse.class │ │ │ └── UnifiedOrderResponse.class │ │ ├── test │ │ │ ├── TestPay.class │ │ │ └── TestPayUtils.class │ │ └── utils │ │ │ ├── Configure.class │ │ │ ├── FormatDateUtils.class │ │ │ ├── PayUtils.class │ │ │ ├── RandomStringGenerator.class │ │ │ ├── Util.class │ │ │ └── XMLParser.class │ │ ├── redpack │ │ ├── conn │ │ │ ├── CouponConn.class │ │ │ ├── RedPackConn.class │ │ │ └── test.txt │ │ ├── request │ │ │ ├── BaseRedPackRequest.class │ │ │ ├── GethbinfoRequest.class │ │ │ ├── GroupredpackRequest.class │ │ │ └── RedpackRequest.class │ │ ├── respose │ │ │ ├── BaseRedPackRespose.class │ │ │ ├── GethbinfoRespose.class │ │ │ ├── HbListItem.class │ │ │ └── SendredpackRespose.class │ │ ├── test │ │ │ ├── TestRedPackConn.class │ │ │ └── TestSendEntity.class │ │ └── utils │ │ │ ├── CouponUtils.class │ │ │ └── SendRedPackUtils.class │ │ ├── semantic │ │ └── conn │ │ │ └── SemanticConn.class │ │ ├── shakea │ │ ├── conn │ │ │ └── ShakeConn.class │ │ ├── request │ │ │ └── RegisterShakea.class │ │ └── result │ │ │ ├── Auditstatus.class │ │ │ └── ShakeaResult.class │ │ ├── sway │ │ └── test │ │ │ └── TestSwayConnection.class │ │ ├── ticket │ │ ├── conn │ │ │ └── TicketConn.class │ │ └── test │ │ │ └── TestTicketConn.class │ │ └── user │ │ ├── conn │ │ └── UserConnection.class │ │ ├── entity │ │ ├── UserOpenListInfo.class │ │ └── WeixinUser.class │ │ ├── menum │ │ └── AuthType.class │ │ ├── request │ │ ├── BatchGet.class │ │ └── BatchGetRequest.class │ │ ├── test │ │ ├── TestList.class │ │ ├── TestUserConnection.class │ │ └── TestUserConvertUtils.class │ │ └── utils │ │ └── UserConvertUtils.class └── test.txt ├── lib ├── .svn │ ├── entries │ ├── prop-base │ │ ├── commons-logging-1.1.3.jar.svn-base │ │ ├── dom4j-1.6.1.jar.svn-base │ │ ├── fastjson-1.1.15.jar.svn-base │ │ ├── httpclient-4.3.4.jar.svn-base │ │ ├── httpcore-4.3.2.jar.svn-base │ │ ├── log4j.jar.svn-base │ │ ├── xpp3-1.1.4c.jar.svn-base │ │ └── xstream-1.4.7.jar.svn-base │ └── text-base │ │ ├── commons-logging-1.1.3.jar.svn-base │ │ ├── dom4j-1.6.1.jar.svn-base │ │ ├── fastjson-1.1.15.jar.svn-base │ │ ├── httpclient-4.3.4.jar.svn-base │ │ ├── httpcore-4.3.2.jar.svn-base │ │ ├── log4j.jar.svn-base │ │ ├── xpp3-1.1.4c.jar.svn-base │ │ └── xstream-1.4.7.jar.svn-base ├── commons-logging-1.1.3.jar ├── dom4j-1.6.1.jar ├── fastjson-1.1.15.jar ├── httpclient-4.3.4.jar ├── httpcore-4.3.2.jar ├── log4j.jar ├── xpp3-1.1.4c.jar └── xstream-1.4.7.jar ├── org.wechat.auth ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── auth │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── AuthUtils.java.svn-base │ └── AuthUtils.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── AbstractRequest.java.svn-base │ │ │ ├── AuthCodeRequest.java.svn-base │ │ │ ├── AuthTokenRequest.java.svn-base │ │ │ ├── AuthUserRequest.java.svn-base │ │ │ └── RefreshTokenRequest.java.svn-base │ ├── AbstractRequest.java │ ├── AuthCodeRequest.java │ ├── AuthTokenRequest.java │ ├── AuthUserRequest.java │ └── RefreshTokenRequest.java │ └── response │ ├── .svn │ ├── entries │ └── text-base │ │ ├── AuthTokenResponse.java.svn-base │ │ └── AuthUserInfo.java.svn-base │ ├── AuthTokenResponse.java │ └── AuthUserInfo.java ├── org.wechat.common ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── common │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── Connection.java.svn-base │ │ │ └── MyX509TrustManager.java.svn-base │ ├── Connection.java │ └── MyX509TrustManager.java │ ├── entity │ ├── .svn │ │ └── entries │ ├── event │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── BasicEvent.java.svn-base │ │ │ │ ├── ClickEvent.java.svn-base │ │ │ │ ├── LocationEvent.java.svn-base │ │ │ │ ├── ScanEvent.java.svn-base │ │ │ │ ├── SubscribeEvent.java.svn-base │ │ │ │ ├── ViewEvent.java.svn-base │ │ │ │ └── VoiceResult.java.svn-base │ │ ├── BasicEvent.java │ │ ├── ClickEvent.java │ │ ├── LocationEvent.java │ │ ├── ScanEvent.java │ │ ├── SubscribeEvent.java │ │ ├── ViewEvent.java │ │ └── VoiceResult.java │ ├── req │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── BasicMsg.java.svn-base │ │ │ │ ├── BasicMsgUserInfo.java.svn-base │ │ │ │ ├── ImageMsg.java.svn-base │ │ │ │ ├── LinkMsg.java.svn-base │ │ │ │ ├── LocationMsg.java.svn-base │ │ │ │ ├── TextMsg.java.svn-base │ │ │ │ ├── VideoMsg.java.svn-base │ │ │ │ └── VoiceMsg.java.svn-base │ │ ├── BasicMsg.java │ │ ├── BasicMsgUserInfo.java │ │ ├── ImageMsg.java │ │ ├── LinkMsg.java │ │ ├── LocationMsg.java │ │ ├── TextMsg.java │ │ ├── VideoMsg.java │ │ └── VoiceMsg.java │ ├── resp │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── RespBasicMsg.java.svn-base │ │ │ │ ├── RespCustomMsg.java.svn-base │ │ │ │ ├── RespImgMsg.java.svn-base │ │ │ │ ├── RespMusicMsg.java.svn-base │ │ │ │ ├── RespNewsMsg.java.svn-base │ │ │ │ ├── RespTextMsg.java.svn-base │ │ │ │ ├── RespVideoMsg.java.svn-base │ │ │ │ └── RespVoiceMsg.java.svn-base │ │ ├── RespBasicMsg.java │ │ ├── RespCustomMsg.java │ │ ├── RespImgMsg.java │ │ ├── RespMusicMsg.java │ │ ├── RespNewsMsg.java │ │ ├── RespTextMsg.java │ │ ├── RespVideoMsg.java │ │ ├── RespVoiceMsg.java │ │ └── bean │ │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── Articles.java.svn-base │ │ │ │ ├── Image.java.svn-base │ │ │ │ ├── Item.java.svn-base │ │ │ │ ├── Music.java.svn-base │ │ │ │ ├── Text.java.svn-base │ │ │ │ ├── Video.java.svn-base │ │ │ │ └── Voice.java.svn-base │ │ │ ├── Articles.java │ │ │ ├── Image.java │ │ │ ├── Item.java │ │ │ ├── Music.java │ │ │ ├── Text.java │ │ │ ├── Video.java │ │ │ └── Voice.java │ └── results │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── AccessToken.java.svn-base │ │ │ ├── BaseXmlObj.java.svn-base │ │ │ ├── JsonResult.java.svn-base │ │ │ ├── ResultState.java.svn-base │ │ │ └── WechatResult.java.svn-base │ │ ├── AccessToken.java │ │ ├── BaseXmlObj.java │ │ ├── JsonResult.java │ │ ├── ResultState.java │ │ └── WechatResult.java │ ├── handler │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicXmlHandler.java.svn-base │ │ │ ├── MsgHandler.java.svn-base │ │ │ └── ReqMsgHandler.java.svn-base │ ├── BasicXmlHandler.java │ ├── MsgHandler.java │ ├── ReqMsgHandler.java │ └── impl │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicXmlHandlerImpl.java.svn-base │ │ │ └── DefaultReqMsgDispose.java.svn-base │ │ ├── BasicXmlHandlerImpl.java │ │ └── DefaultReqMsgDispose.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestConnection.java.svn-base │ │ │ ├── TestConvertXMLUtils.java.svn-base │ │ │ ├── TestJsonString.java.svn-base │ │ │ └── TestMsgHandler.java.svn-base │ ├── TestConnection.java │ ├── TestConvertXMLUtils.java │ ├── TestJsonString.java │ └── TestMsgHandler.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ ├── CharsetUtils.java.svn-base │ │ ├── Constants.java.svn-base │ │ ├── ConvertJsonUtils.java.svn-base │ │ ├── ConvertXMLUtils.java.svn-base │ │ ├── EncryptUtils.java.svn-base │ │ ├── PropertiesUtils.java.svn-base │ │ ├── SHA1.java.svn-base │ │ ├── Signature.java.svn-base │ │ ├── WStringUtils.java.svn-base │ │ └── XStreamFactory.java.svn-base │ ├── CharsetUtils.java │ ├── Constants.java │ ├── ConvertJsonUtils.java │ ├── ConvertXMLUtils.java │ ├── EncryptUtils.java │ ├── PropertiesUtils.java │ ├── SHA1.java │ ├── Signature.java │ ├── WStringUtils.java │ └── XStreamFactory.java ├── org.wechat.count ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── count │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CountConn.java.svn-base │ └── CountConn.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── InterAnlyseEntity.java.svn-base │ │ │ ├── MsgAnalyseEntity.java.svn-base │ │ │ ├── NewsAnlyseEntity.java.svn-base │ │ │ └── UserAnlyseEntity.java.svn-base │ ├── InterAnlyseEntity.java │ ├── MsgAnalyseEntity.java │ ├── NewsAnlyseEntity.java │ └── UserAnlyseEntity.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestCountConn.java.svn-base │ └── TestCountConn.java ├── org.wechat.custom ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── custom │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CustomConn.java.svn-base │ └── CustomConn.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicMsg.java.svn-base │ │ │ ├── CVideo.java.svn-base │ │ │ ├── ImageCustom.java.svn-base │ │ │ ├── MusicCustom.java.svn-base │ │ │ ├── News.java.svn-base │ │ │ ├── NewsCustom.java.svn-base │ │ │ ├── SessionEntity.java.svn-base │ │ │ ├── TextCustom.java.svn-base │ │ │ ├── VideoCustom.java.svn-base │ │ │ └── VoiceCustom.java.svn-base │ ├── BasicMsg.java │ ├── CVideo.java │ ├── ImageCustom.java │ ├── MusicCustom.java │ ├── News.java │ ├── NewsCustom.java │ ├── SessionEntity.java │ ├── TextCustom.java │ ├── VideoCustom.java │ ├── VoiceCustom.java │ └── results │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── CustomTalkRecord.java.svn-base │ │ │ ├── CustonInfo.java.svn-base │ │ │ ├── LinekFlist.java.svn-base │ │ │ └── OnLineSession.java.svn-base │ │ ├── CustomTalkRecord.java │ │ ├── CustonInfo.java │ │ ├── LinekFlist.java │ │ └── OnLineSession.java │ ├── handler │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CustomHandler.java.svn-base │ └── CustomHandler.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ ├── TestCustomConn.java.svn-base │ │ └── TestCustomHandler.java.svn-base │ ├── TestCustomConn.java │ └── TestCustomHandler.java ├── org.wechat.device ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ ├── device │ ├── .svn │ │ └── entries │ ├── conn │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── SwayConnection.java.svn-base │ │ └── SwayConnection.java │ ├── convert │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── SwayConvertUtils.java.svn-base │ │ └── SwayConvertUtils.java │ ├── request │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── DeviceIdentifier.java.svn-base │ │ │ │ ├── EditPagerRequest.java.svn-base │ │ │ │ └── PageRequest.java.svn-base │ │ ├── DeviceIdentifier.java │ │ ├── EditPagerRequest.java │ │ └── PageRequest.java │ └── response │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── Apply.java.svn-base │ │ │ ├── ApplyResult.java.svn-base │ │ │ ├── BeaconInfo.java.svn-base │ │ │ ├── BeaconInfoResponse.java.svn-base │ │ │ ├── BeaconInfoResult.java.svn-base │ │ │ ├── CountData.java.svn-base │ │ │ ├── CountDataResponse.java.svn-base │ │ │ ├── DeviceItem.java.svn-base │ │ │ ├── DevicesData.java.svn-base │ │ │ ├── GreaterResult.java.svn-base │ │ │ ├── Less500Result.java.svn-base │ │ │ ├── PageResult.java.svn-base │ │ │ ├── PagerResponse.java.svn-base │ │ │ ├── QueryPager.java.svn-base │ │ │ ├── QueryResponse.java.svn-base │ │ │ └── SearchResult.java.svn-base │ │ ├── Apply.java │ │ ├── ApplyResult.java │ │ ├── BeaconInfo.java │ │ ├── BeaconInfoResponse.java │ │ ├── BeaconInfoResult.java │ │ ├── CountData.java │ │ ├── CountDataResponse.java │ │ ├── DeviceItem.java │ │ ├── DevicesData.java │ │ ├── GreaterResult.java │ │ ├── Less500Result.java │ │ ├── PageResult.java │ │ ├── PagerResponse.java │ │ ├── QueryPager.java │ │ ├── QueryResponse.java │ │ └── SearchResult.java │ └── sway │ ├── .svn │ └── entries │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestSwayConnection.java.svn-base │ └── TestSwayConnection.java ├── org.wechat.material ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── material │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── MeaterConn.java.svn-base │ └── MeaterConn.java │ ├── result │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── CountEntity.java.svn-base │ │ │ ├── MaterMsg.java.svn-base │ │ │ ├── MeterResult.java.svn-base │ │ │ ├── NewsItem.java.svn-base │ │ │ ├── NewsList.java.svn-base │ │ │ ├── OtherItem.java.svn-base │ │ │ └── OtherList.java.svn-base │ ├── CountEntity.java │ ├── MaterMsg.java │ ├── MeterResult.java │ ├── NewsItem.java │ ├── NewsList.java │ ├── OtherItem.java │ └── OtherList.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestMaterialConn.java.svn-base │ └── TestMaterialConn.java ├── org.wechat.menu ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── menu │ ├── .svn │ └── entries │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicMenu.java.svn-base │ │ │ ├── ClickMenu.java.svn-base │ │ │ ├── GroupButton.java.svn-base │ │ │ ├── LocationSelect.java.svn-base │ │ │ ├── Menu.java.svn-base │ │ │ ├── MenuAllInfo.java.svn-base │ │ │ ├── PicSysphoto.java.svn-base │ │ │ ├── PicWeixin.java.svn-base │ │ │ ├── PicphotoOralbum.java.svn-base │ │ │ ├── ReturnMenu.java.svn-base │ │ │ ├── ScanPush.java.svn-base │ │ │ ├── ViewMenu.java.svn-base │ │ │ └── WaitMsg.java.svn-base │ ├── BasicMenu.java │ ├── ClickMenu.java │ ├── GroupButton.java │ ├── LocationSelect.java │ ├── Menu.java │ ├── MenuAllInfo.java │ ├── PicSysphoto.java │ ├── PicWeixin.java │ ├── PicphotoOralbum.java │ ├── ReturnMenu.java │ ├── ScanPush.java │ ├── ViewMenu.java │ └── WaitMsg.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── TestMenuConnection.java.svn-base │ └── TestMenuConnection.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ └── MenuConnection.java.svn-base │ └── MenuConnection.java ├── org.wechat.msg ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── msg │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── MessageConn.java.svn-base │ └── MessageConn.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── NewsEntity.java.svn-base │ └── NewsEntity.java │ ├── result │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── MsgResult.java.svn-base │ │ │ ├── SendStatus.java.svn-base │ │ │ └── UploadNews.java.svn-base │ ├── MsgResult.java │ ├── SendStatus.java │ └── UploadNews.java │ ├── templet │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BaseTemplet.java.svn-base │ │ │ └── LogisticsThemple.java.svn-base │ ├── BaseTemplet.java │ └── LogisticsThemple.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ ├── TestLogisticsThemple.java.svn-base │ │ └── TestMsgConn.java.svn-base │ ├── TestLogisticsThemple.java │ └── TestMsgConn.java ├── org.wechat.pay ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── pay │ ├── .svn │ └── entries │ ├── annotation │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── NotSign.java.svn-base │ └── NotSign.java │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── PayConnection.java.svn-base │ └── PayConnection.java │ ├── handler │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── PayHandler.java.svn-base │ └── PayHandler.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicPayParams.java.svn-base │ │ │ ├── CloseorderRequest.java.svn-base │ │ │ ├── DownloadBillRequest.java.svn-base │ │ │ ├── QueryOrderRequet.java.svn-base │ │ │ ├── RedBackRequest.java.svn-base │ │ │ ├── RefundRequest.java.svn-base │ │ │ ├── RefundqueryRequest.java.svn-base │ │ │ ├── ReportRequest.java.svn-base │ │ │ ├── ShortUrlRequest.java.svn-base │ │ │ └── UnifiedOrderRequest.java.svn-base │ ├── BasicPayParams.java │ ├── CloseorderRequest.java │ ├── DownloadBillRequest.java │ ├── QueryOrderRequet.java │ ├── RedBackRequest.java │ ├── RefundRequest.java │ ├── RefundqueryRequest.java │ ├── ReportRequest.java │ ├── ShortUrlRequest.java │ └── UnifiedOrderRequest.java │ ├── response │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BasicReturnSuccess.java.svn-base │ │ │ ├── JSResponse.java.svn-base │ │ │ ├── PayNoticeResponse.java.svn-base │ │ │ ├── PayResponseResult.java.svn-base │ │ │ ├── QueryOrderResultSuccess.java.svn-base │ │ │ ├── QueryOrderReturnSuccess.java.svn-base │ │ │ ├── RedBackResultSuccess.java.svn-base │ │ │ ├── RedBackReturnSuccess.java.svn-base │ │ │ ├── RefundResponse.java.svn-base │ │ │ ├── RefundqueryResponse.java.svn-base │ │ │ ├── ReportResponse.java.svn-base │ │ │ ├── ShortUrlResponse.java.svn-base │ │ │ ├── TicketResponse.java.svn-base │ │ │ ├── UnifiedNoticeResponse.java.svn-base │ │ │ └── UnifiedOrderResponse.java.svn-base │ ├── BasicReturnSuccess.java │ ├── JSResponse.java │ ├── PayNoticeResponse.java │ ├── PayResponseResult.java │ ├── QueryOrderResultSuccess.java │ ├── QueryOrderReturnSuccess.java │ ├── RedBackResultSuccess.java │ ├── RedBackReturnSuccess.java │ ├── RefundResponse.java │ ├── RefundqueryResponse.java │ ├── ReportResponse.java │ ├── ShortUrlResponse.java │ ├── TicketResponse.java │ ├── UnifiedNoticeResponse.java │ └── UnifiedOrderResponse.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestPay.java.svn-base │ │ │ └── TestPayUtils.java.svn-base │ ├── TestPay.java │ └── TestPayUtils.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ ├── Configure.java.svn-base │ │ ├── FormatDateUtils.java.svn-base │ │ ├── PayUtils.java.svn-base │ │ ├── RandomStringGenerator.java.svn-base │ │ ├── Util.java.svn-base │ │ └── XMLParser.java.svn-base │ ├── Configure.java │ ├── FormatDateUtils.java │ ├── PayUtils.java │ ├── RandomStringGenerator.java │ ├── Util.java │ └── XMLParser.java ├── org.wechat.redpack ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ ├── coupon │ ├── .svn │ │ └── entries │ ├── request │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── QueryCouponStock.java.svn-base │ │ │ │ └── SendCouponRequest.java.svn-base │ │ ├── QueryCouponStock.java │ │ └── SendCouponRequest.java │ └── respose │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── CouponRespose.java.svn-base │ │ └── CouponRespose.java │ └── redpack │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── CouponConn.java.svn-base │ │ │ ├── RedPackConn.java.svn-base │ │ │ └── test.txt.svn-base │ ├── CouponConn.java │ ├── RedPackConn.java │ └── test.txt │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BaseRedPackRequest.java.svn-base │ │ │ ├── GethbinfoRequest.java.svn-base │ │ │ ├── GroupredpackRequest.java.svn-base │ │ │ └── RedpackRequest.java.svn-base │ ├── BaseRedPackRequest.java │ ├── GethbinfoRequest.java │ ├── GroupredpackRequest.java │ └── RedpackRequest.java │ ├── respose │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BaseRedPackRespose.java.svn-base │ │ │ ├── GethbinfoRespose.java.svn-base │ │ │ ├── HbListItem.java.svn-base │ │ │ └── SendredpackRespose.java.svn-base │ ├── BaseRedPackRespose.java │ ├── GethbinfoRespose.java │ ├── HbListItem.java │ └── SendredpackRespose.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestRedPackConn.java.svn-base │ │ │ └── TestSendEntity.java.svn-base │ ├── TestRedPackConn.java │ └── TestSendEntity.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ ├── CouponUtils.java.svn-base │ │ └── SendRedPackUtils.java.svn-base │ ├── CouponUtils.java │ └── SendRedPackUtils.java ├── org.wechat.semantic ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── semantic │ ├── .svn │ └── entries │ └── conn │ ├── .svn │ ├── entries │ └── text-base │ │ └── SemanticConn.java.svn-base │ └── SemanticConn.java ├── org.wechat.shakearound ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── shakea │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── ShakeConn.java.svn-base │ └── ShakeConn.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── RegisterShakea.java.svn-base │ └── RegisterShakea.java │ └── result │ ├── .svn │ ├── entries │ └── text-base │ │ ├── Auditstatus.java.svn-base │ │ └── ShakeaResult.java.svn-base │ ├── Auditstatus.java │ └── ShakeaResult.java ├── org.wechat.ticket ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ └── wechat │ ├── .svn │ └── entries │ └── ticket │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── TicketConn.java.svn-base │ └── TicketConn.java │ └── test │ ├── .svn │ ├── entries │ └── text-base │ │ └── TestTicketConn.java.svn-base │ └── TestTicketConn.java ├── org.wechat.user ├── .svn │ └── entries └── org │ ├── .svn │ └── entries │ ├── wecaht │ ├── .svn │ │ └── entries │ └── user │ │ ├── .svn │ │ └── entries │ │ └── menum │ │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── AuthType.java.svn-base │ │ └── AuthType.java │ └── wechat │ ├── .svn │ └── entries │ └── user │ ├── .svn │ └── entries │ ├── conn │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── UserConnection.java.svn-base │ └── UserConnection.java │ ├── entity │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── UserOpenListInfo.java.svn-base │ │ │ └── WeixinUser.java.svn-base │ ├── UserOpenListInfo.java │ └── WeixinUser.java │ ├── menum │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── AuthType.java.svn-base │ └── AuthType.java │ ├── request │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── BatchGet.java.svn-base │ │ │ └── BatchGetRequest.java.svn-base │ ├── BatchGet.java │ └── BatchGetRequest.java │ ├── test │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ ├── TestList.java.svn-base │ │ │ ├── TestUserConnection.java.svn-base │ │ │ └── TestUserConvertUtils.java.svn-base │ ├── TestList.java │ ├── TestUserConnection.java │ └── TestUserConvertUtils.java │ └── utils │ ├── .svn │ ├── entries │ └── text-base │ │ └── UserConvertUtils.java.svn-base │ └── UserConvertUtils.java └── src ├── .svn ├── entries └── text-base │ └── test.txt.svn-base └── test.txt /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/README.md -------------------------------------------------------------------------------- /lib/wechat-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/lib/wechat-1.0.1.jar -------------------------------------------------------------------------------- /lib/依赖jar包/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/lib/依赖jar包/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /lib/依赖jar包/fastjson-1.1.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/lib/依赖jar包/fastjson-1.1.15.jar -------------------------------------------------------------------------------- /lib/依赖jar包/log4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/lib/依赖jar包/log4j.jar -------------------------------------------------------------------------------- /lib/依赖jar包/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/lib/依赖jar包/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /lib/依赖jar包/xstream-1.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/lib/依赖jar包/xstream-1.4.7.jar -------------------------------------------------------------------------------- /source/wechatSource/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.classpath -------------------------------------------------------------------------------- /source/wechatSource/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.project -------------------------------------------------------------------------------- /source/wechatSource/.settings/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.settings/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/.settings/.svn/text-base/org.eclipse.core.resources.prefs.svn-base: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /source/wechatSource/.settings/.svn/text-base/org.eclipse.jdt.core.prefs.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.settings/.svn/text-base/org.eclipse.jdt.core.prefs.svn-base -------------------------------------------------------------------------------- /source/wechatSource/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /source/wechatSource/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /source/wechatSource/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/.svn/text-base/.classpath.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.svn/text-base/.classpath.svn-base -------------------------------------------------------------------------------- /source/wechatSource/.svn/text-base/.project.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/.svn/text-base/.project.svn-base -------------------------------------------------------------------------------- /source/wechatSource/bin/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/bin/.svn/text-base/test.txt.svn-base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wecaht/user/menum/AuthType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wecaht/user/menum/AuthType.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/conn/AuthUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/conn/AuthUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AbstractRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/request/AbstractRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AuthCodeRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/request/AuthCodeRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AuthTokenRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/request/AuthTokenRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/AuthUserRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/request/AuthUserRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/request/RefreshTokenRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/request/RefreshTokenRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/response/AuthTokenResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/response/AuthTokenResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/auth/response/AuthUserInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/auth/response/AuthUserInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/conn/Connection$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/conn/Connection$1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/conn/Connection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/conn/Connection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/conn/MyX509TrustManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/conn/MyX509TrustManager.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/BasicEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/BasicEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/ClickEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/ClickEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/LocationEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/LocationEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/ScanEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/ScanEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/SubscribeEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/SubscribeEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/ViewEvent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/ViewEvent.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/event/VoiceResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/event/VoiceResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/BasicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/BasicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/BasicMsgUserInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/BasicMsgUserInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/ImageMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/ImageMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/LinkMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/LinkMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/LocationMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/LocationMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/TextMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/TextMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/VideoMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/VideoMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/req/VoiceMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/req/VoiceMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespBasicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespBasicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespCustomMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespCustomMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespImgMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespImgMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespMusicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespMusicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespNewsMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespNewsMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespTextMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespTextMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespVideoMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespVideoMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/RespVoiceMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/RespVoiceMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Articles.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Articles.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Image.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Image.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Item.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Item.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Music.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Music.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Text.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Text.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Video.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Video.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/resp/bean/Voice.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/resp/bean/Voice.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/AccessToken.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/results/AccessToken.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/BaseXmlObj.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/results/BaseXmlObj.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/JsonResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/results/JsonResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/ResultState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/results/ResultState.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/entity/results/WechatResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/entity/results/WechatResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/BasicXmlHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/handler/BasicXmlHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/MsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/handler/MsgHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/ReqMsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/handler/ReqMsgHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/impl/BasicXmlHandlerImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/handler/impl/BasicXmlHandlerImpl.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/handler/impl/DefaultReqMsgDispose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/handler/impl/DefaultReqMsgDispose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/test/TestConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestConvertXMLUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/test/TestConvertXMLUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestJsonString.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/test/TestJsonString.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/test/TestMsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/test/TestMsgHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/CharsetUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/CharsetUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/Constants.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertJsonUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/ConvertJsonUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyDoubleCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyDoubleCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyFloatCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyFloatCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyIntCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyIntCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyLongCoverter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils$MyLongCoverter.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/ConvertXMLUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/EncryptUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/EncryptUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/PropertiesUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/PropertiesUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/SHA1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/SHA1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/Signature.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/Signature.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/WStringUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/WStringUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1$1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/XStreamFactory$1.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/common/utils/XStreamFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/common/utils/XStreamFactory.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/conn/CountConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/count/conn/CountConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/InterAnlyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/count/entity/InterAnlyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/MsgAnalyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/count/entity/MsgAnalyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/NewsAnlyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/count/entity/NewsAnlyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/entity/UserAnlyseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/count/entity/UserAnlyseEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/count/test/TestCountConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/count/test/TestCountConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/coupon/request/QueryCouponStock.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/coupon/request/QueryCouponStock.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/coupon/request/SendCouponRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/coupon/request/SendCouponRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/coupon/respose/CouponRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/coupon/respose/CouponRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/conn/CustomConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/conn/CustomConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/BasicMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/BasicMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/CVideo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/CVideo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/ImageCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/ImageCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/MusicCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/MusicCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/News.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/News.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/NewsCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/NewsCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/SessionEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/SessionEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/TextCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/TextCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/VideoCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/VideoCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/VoiceCustom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/VoiceCustom.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/CustomTalkRecord.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/results/CustomTalkRecord.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/CustonInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/results/CustonInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/LinekFlist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/results/LinekFlist.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/entity/results/OnLineSession.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/entity/results/OnLineSession.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/handler/CustomHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/handler/CustomHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/test/TestCustomConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/test/TestCustomConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/custom/test/TestCustomHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/custom/test/TestCustomHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/conn/SwayConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/conn/SwayConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/convert/SwayConvertUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/convert/SwayConvertUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/request/DeviceIdentifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/request/DeviceIdentifier.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/request/EditPagerRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/request/EditPagerRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/request/PageRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/request/PageRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/Apply.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/Apply.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/ApplyResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/ApplyResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/BeaconInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/BeaconInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/BeaconInfoResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/BeaconInfoResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/BeaconInfoResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/BeaconInfoResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/CountData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/CountData.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/CountDataResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/CountDataResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/DeviceItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/DeviceItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/DevicesData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/DevicesData.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/GreaterResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/GreaterResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/Less500Result.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/Less500Result.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/PageResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/PageResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/PagerResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/PagerResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/QueryPager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/QueryPager.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/QueryResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/QueryResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/device/response/SearchResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/device/response/SearchResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/conn/MeaterConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/conn/MeaterConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/CountEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/CountEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/MaterMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/MaterMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/MeterResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/MeterResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/NewsItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/NewsItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/NewsList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/NewsList.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/OtherItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/OtherItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/result/OtherList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/result/OtherList.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/material/test/TestMaterialConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/material/test/TestMaterialConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/BasicMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/BasicMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ClickMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/ClickMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/GroupButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/GroupButton.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/LocationSelect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/LocationSelect.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/Menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/Menu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/MenuAllInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/MenuAllInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/PicSysphoto.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/PicSysphoto.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/PicWeixin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/PicWeixin.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/PicphotoOralbum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/PicphotoOralbum.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ReturnMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/ReturnMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ScanPush.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/ScanPush.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/ViewMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/ViewMenu.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/entity/WaitMsg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/entity/WaitMsg.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/test/TestMenuConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/test/TestMenuConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/menu/utils/MenuConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/menu/utils/MenuConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/conn/MessageConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/conn/MessageConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/entity/NewsEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/entity/NewsEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/result/MsgResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/result/MsgResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/result/SendStatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/result/SendStatus.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/result/UploadNews.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/result/UploadNews.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/templet/BaseTemplet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/templet/BaseTemplet.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/templet/LogisticsThemple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/templet/LogisticsThemple.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/test/TestLogisticsThemple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/test/TestLogisticsThemple.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/msg/test/TestMsgConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/msg/test/TestMsgConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/annotation/NotSign.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/annotation/NotSign.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/conn/PayConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/conn/PayConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/handler/PayHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/handler/PayHandler.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/BasicPayParams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/BasicPayParams.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/CloseorderRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/CloseorderRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/DownloadBillRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/DownloadBillRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/QueryOrderRequet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/QueryOrderRequet.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/RedBackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/RedBackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/RefundRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/RefundRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/RefundqueryRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/RefundqueryRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/ReportRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/ReportRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/ShortUrlRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/ShortUrlRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/request/UnifiedOrderRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/request/UnifiedOrderRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/BasicReturnSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/BasicReturnSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/JSResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/JSResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/PayNoticeResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/PayNoticeResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/PayResponseResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/PayResponseResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/QueryOrderResultSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/QueryOrderResultSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RedBackResultSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/RedBackResultSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RedBackReturnSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/RedBackReturnSuccess.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RefundResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/RefundResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/RefundqueryResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/RefundqueryResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/ReportResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/ReportResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/ShortUrlResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/ShortUrlResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/TicketResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/TicketResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/UnifiedNoticeResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/UnifiedNoticeResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/response/UnifiedOrderResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/response/UnifiedOrderResponse.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/test/TestPay.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/test/TestPay.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/test/TestPayUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/test/TestPayUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/Configure.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/utils/Configure.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/FormatDateUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/utils/FormatDateUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/PayUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/utils/PayUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/RandomStringGenerator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/utils/RandomStringGenerator.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/utils/Util.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/pay/utils/XMLParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/pay/utils/XMLParser.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/conn/CouponConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/conn/CouponConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/conn/RedPackConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/conn/RedPackConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/conn/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/BaseRedPackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/request/BaseRedPackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/GethbinfoRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/request/GethbinfoRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/GroupredpackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/request/GroupredpackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/request/RedpackRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/request/RedpackRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/BaseRedPackRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/respose/BaseRedPackRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/GethbinfoRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/respose/GethbinfoRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/HbListItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/respose/HbListItem.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/respose/SendredpackRespose.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/respose/SendredpackRespose.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/test/TestRedPackConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/test/TestRedPackConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/test/TestSendEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/test/TestSendEntity.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/utils/CouponUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/utils/CouponUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/redpack/utils/SendRedPackUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/redpack/utils/SendRedPackUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/semantic/conn/SemanticConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/semantic/conn/SemanticConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/conn/ShakeConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/shakea/conn/ShakeConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/request/RegisterShakea.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/shakea/request/RegisterShakea.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/result/Auditstatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/shakea/result/Auditstatus.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/shakea/result/ShakeaResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/shakea/result/ShakeaResult.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/sway/test/TestSwayConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/sway/test/TestSwayConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/ticket/conn/TicketConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/ticket/conn/TicketConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/ticket/test/TestTicketConn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/ticket/test/TestTicketConn.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/conn/UserConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/conn/UserConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/entity/UserOpenListInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/entity/UserOpenListInfo.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/entity/WeixinUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/entity/WeixinUser.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/menum/AuthType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/menum/AuthType.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/request/BatchGet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/request/BatchGet.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/request/BatchGetRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/request/BatchGetRequest.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/test/TestList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/test/TestList.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/test/TestUserConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/test/TestUserConnection.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/test/TestUserConvertUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/test/TestUserConvertUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/org/wechat/user/utils/UserConvertUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/bin/org/wechat/user/utils/UserConvertUtils.class -------------------------------------------------------------------------------- /source/wechatSource/bin/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/commons-logging-1.1.3.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/dom4j-1.6.1.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/fastjson-1.1.15.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/httpclient-4.3.4.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/httpcore-4.3.2.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/log4j.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/xpp3-1.1.4c.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/prop-base/xstream-1.4.7.jar.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/commons-logging-1.1.3.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/commons-logging-1.1.3.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/dom4j-1.6.1.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/dom4j-1.6.1.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/fastjson-1.1.15.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/fastjson-1.1.15.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/httpclient-4.3.4.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/httpclient-4.3.4.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/httpcore-4.3.2.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/httpcore-4.3.2.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/log4j.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/log4j.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/xpp3-1.1.4c.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/xpp3-1.1.4c.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/.svn/text-base/xstream-1.4.7.jar.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/.svn/text-base/xstream-1.4.7.jar.svn-base -------------------------------------------------------------------------------- /source/wechatSource/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/fastjson-1.1.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/fastjson-1.1.15.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/httpclient-4.3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/httpclient-4.3.4.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/httpcore-4.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/httpcore-4.3.2.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/log4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/log4j.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /source/wechatSource/lib/xstream-1.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/lib/xstream-1.4.7.jar -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/conn/.svn/text-base/AuthUtils.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/conn/.svn/text-base/AuthUtils.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/conn/AuthUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/conn/AuthUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/AbstractRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/request/AbstractRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/AuthCodeRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/request/AuthCodeRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/AuthTokenRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/request/AuthTokenRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/AuthUserRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/request/AuthUserRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/request/RefreshTokenRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/request/RefreshTokenRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/response/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/response/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/response/.svn/text-base/AuthUserInfo.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/response/.svn/text-base/AuthUserInfo.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/response/AuthTokenResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/response/AuthTokenResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.auth/org/wechat/auth/response/AuthUserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.auth/org/wechat/auth/response/AuthUserInfo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/conn/.svn/text-base/Connection.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/conn/.svn/text-base/Connection.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/conn/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/conn/Connection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/conn/MyX509TrustManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/conn/MyX509TrustManager.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/BasicEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/BasicEvent.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ClickEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ClickEvent.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/LocationEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/LocationEvent.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ScanEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ScanEvent.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/SubscribeEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/SubscribeEvent.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ViewEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/ViewEvent.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/event/VoiceResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/event/VoiceResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/LinkMsg.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/LinkMsg.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/TextMsg.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/.svn/text-base/TextMsg.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/BasicMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/BasicMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/BasicMsgUserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/BasicMsgUserInfo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/ImageMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/ImageMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/LinkMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/LinkMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/LocationMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/LocationMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/TextMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/TextMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/VideoMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/VideoMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/req/VoiceMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/req/VoiceMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespBasicMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespBasicMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespCustomMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespCustomMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespImgMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespImgMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespMusicMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespMusicMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespNewsMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespNewsMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespTextMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespTextMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespVideoMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespVideoMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespVoiceMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/RespVoiceMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Articles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Articles.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Image.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Image.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Item.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Music.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Music.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Text.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Text.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Video.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Video.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Voice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/resp/bean/Voice.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/results/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/AccessToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/results/AccessToken.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/BaseXmlObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/results/BaseXmlObj.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/JsonResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/results/JsonResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/ResultState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/results/ResultState.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/entity/results/WechatResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/entity/results/WechatResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/.svn/text-base/MsgHandler.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/.svn/text-base/MsgHandler.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/BasicXmlHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/BasicXmlHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/MsgHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/MsgHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/ReqMsgHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/ReqMsgHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/impl/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/impl/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/impl/BasicXmlHandlerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/impl/BasicXmlHandlerImpl.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/handler/impl/DefaultReqMsgDispose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/handler/impl/DefaultReqMsgDispose.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/TestConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/test/TestConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/TestConvertXMLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/test/TestConvertXMLUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/TestJsonString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/test/TestJsonString.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/test/TestMsgHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/test/TestMsgHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/CharsetUtils.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/CharsetUtils.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/Constants.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/Constants.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/SHA1.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/SHA1.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/Signature.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/.svn/text-base/Signature.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/CharsetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/CharsetUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/Constants.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/ConvertJsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/ConvertJsonUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/ConvertXMLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/ConvertXMLUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/EncryptUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/EncryptUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/PropertiesUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/PropertiesUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/SHA1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/SHA1.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/Signature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/Signature.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/WStringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/WStringUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.common/org/wechat/common/utils/XStreamFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.common/org/wechat/common/utils/XStreamFactory.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/conn/.svn/text-base/CountConn.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/conn/.svn/text-base/CountConn.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/conn/CountConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/conn/CountConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/entity/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/entity/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/entity/InterAnlyseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/entity/InterAnlyseEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/entity/MsgAnalyseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/entity/MsgAnalyseEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/entity/NewsAnlyseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/entity/NewsAnlyseEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/entity/UserAnlyseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/entity/UserAnlyseEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/test/.svn/text-base/TestCountConn.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/test/.svn/text-base/TestCountConn.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.count/org/wechat/count/test/TestCountConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.count/org/wechat/count/test/TestCountConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/conn/.svn/text-base/CustomConn.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/conn/.svn/text-base/CustomConn.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/conn/CustomConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/conn/CustomConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/BasicMsg.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/BasicMsg.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/CVideo.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/CVideo.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/News.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/.svn/text-base/News.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/BasicMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/BasicMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/CVideo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/CVideo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/ImageCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/ImageCustom.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/MusicCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/MusicCustom.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/News.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/News.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/NewsCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/NewsCustom.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/SessionEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/SessionEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/TextCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/TextCustom.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/VideoCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/VideoCustom.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/VoiceCustom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/VoiceCustom.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/CustomTalkRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/CustomTalkRecord.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/CustonInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/CustonInfo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/LinekFlist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/LinekFlist.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/OnLineSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/entity/results/OnLineSession.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/handler/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/handler/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/handler/CustomHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/handler/CustomHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/test/TestCustomConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/test/TestCustomConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.custom/org/wechat/custom/test/TestCustomHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.custom/org/wechat/custom/test/TestCustomHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/conn/SwayConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/conn/SwayConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/convert/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/convert/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/convert/SwayConvertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/convert/SwayConvertUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/request/DeviceIdentifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/request/DeviceIdentifier.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/request/EditPagerRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/request/EditPagerRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/request/PageRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/request/PageRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/Apply.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/.svn/text-base/Apply.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/Apply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/Apply.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/ApplyResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/ApplyResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfoResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfoResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfoResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/BeaconInfoResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/CountData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/CountData.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/CountDataResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/CountDataResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/DeviceItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/DeviceItem.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/DevicesData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/DevicesData.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/GreaterResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/GreaterResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/Less500Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/Less500Result.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/PageResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/PageResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/PagerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/PagerResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/QueryPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/QueryPager.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/QueryResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/QueryResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/device/response/SearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/device/response/SearchResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/sway/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/sway/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/sway/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/sway/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.device/org/wechat/sway/test/TestSwayConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.device/org/wechat/sway/test/TestSwayConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/conn/MeaterConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/conn/MeaterConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/CountEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/CountEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/MaterMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/MaterMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/MeterResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/MeterResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/NewsItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/NewsItem.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/NewsList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/NewsList.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/OtherItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/OtherItem.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/result/OtherList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/result/OtherList.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.material/org/wechat/material/test/TestMaterialConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.material/org/wechat/material/test/TestMaterialConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/BasicMenu.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/BasicMenu.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ClickMenu.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ClickMenu.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/GroupButton.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/GroupButton.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/Menu.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/Menu.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/MenuAllInfo.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/MenuAllInfo.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicSysphoto.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicSysphoto.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicWeixin.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/PicWeixin.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ReturnMenu.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ReturnMenu.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ScanPush.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ScanPush.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ViewMenu.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/ViewMenu.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/WaitMsg.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/.svn/text-base/WaitMsg.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/BasicMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/BasicMenu.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ClickMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ClickMenu.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/GroupButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/GroupButton.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/LocationSelect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/LocationSelect.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/Menu.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/MenuAllInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/MenuAllInfo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicSysphoto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicSysphoto.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicWeixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicWeixin.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicphotoOralbum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/PicphotoOralbum.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ReturnMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ReturnMenu.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ScanPush.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ScanPush.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ViewMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/ViewMenu.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/entity/WaitMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/entity/WaitMsg.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/test/TestMenuConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/test/TestMenuConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/utils/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/utils/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/utils/.svn/text-base/MenuConnection.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/utils/.svn/text-base/MenuConnection.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.menu/org/wechat/menu/utils/MenuConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.menu/org/wechat/menu/utils/MenuConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/conn/.svn/text-base/MessageConn.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/conn/.svn/text-base/MessageConn.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/conn/MessageConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/conn/MessageConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/entity/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/entity/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/entity/.svn/text-base/NewsEntity.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/entity/.svn/text-base/NewsEntity.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/entity/NewsEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/entity/NewsEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/MsgResult.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/MsgResult.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/SendStatus.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/SendStatus.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/UploadNews.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/.svn/text-base/UploadNews.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/MsgResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/MsgResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/SendStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/SendStatus.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/result/UploadNews.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/result/UploadNews.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/templet/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/templet/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/templet/.svn/text-base/BaseTemplet.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/templet/.svn/text-base/BaseTemplet.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/templet/BaseTemplet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/templet/BaseTemplet.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/templet/LogisticsThemple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/templet/LogisticsThemple.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/test/.svn/text-base/TestMsgConn.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/test/.svn/text-base/TestMsgConn.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/test/TestLogisticsThemple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/test/TestLogisticsThemple.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.msg/org/wechat/msg/test/TestMsgConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.msg/org/wechat/msg/test/TestMsgConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/.svn/text-base/NotSign.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/.svn/text-base/NotSign.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/NotSign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/annotation/NotSign.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/conn/.svn/text-base/PayConnection.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/conn/.svn/text-base/PayConnection.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/conn/PayConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/conn/PayConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/handler/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/handler/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/handler/.svn/text-base/PayHandler.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/handler/.svn/text-base/PayHandler.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/handler/PayHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/handler/PayHandler.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/BasicPayParams.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/BasicPayParams.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/RedBackRequest.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/RedBackRequest.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/RefundRequest.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/RefundRequest.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/ReportRequest.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/.svn/text-base/ReportRequest.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/BasicPayParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/BasicPayParams.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/CloseorderRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/CloseorderRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/DownloadBillRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/DownloadBillRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/QueryOrderRequet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/QueryOrderRequet.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/RedBackRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/RedBackRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/RefundRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/RefundRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/RefundqueryRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/RefundqueryRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/ReportRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/ReportRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/ShortUrlRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/ShortUrlRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/request/UnifiedOrderRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/request/UnifiedOrderRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/.svn/text-base/JSResponse.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/.svn/text-base/JSResponse.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/BasicReturnSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/BasicReturnSuccess.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/JSResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/JSResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/PayNoticeResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/PayNoticeResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/PayResponseResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/PayResponseResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/QueryOrderResultSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/QueryOrderResultSuccess.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/QueryOrderReturnSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/QueryOrderReturnSuccess.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/RedBackResultSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/RedBackResultSuccess.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/RedBackReturnSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/RedBackReturnSuccess.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/RefundResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/RefundResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/RefundqueryResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/RefundqueryResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/ReportResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/ReportResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/ShortUrlResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/ShortUrlResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/TicketResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/TicketResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/UnifiedNoticeResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/UnifiedNoticeResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/response/UnifiedOrderResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/response/UnifiedOrderResponse.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/test/.svn/text-base/TestPay.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/test/.svn/text-base/TestPay.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/test/.svn/text-base/TestPayUtils.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/test/.svn/text-base/TestPayUtils.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/test/TestPay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/test/TestPay.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/test/TestPayUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/test/TestPayUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/Configure.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/Configure.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/FormatDateUtils.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/FormatDateUtils.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/PayUtils.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/PayUtils.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/Util.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/Util.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/XMLParser.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/.svn/text-base/XMLParser.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/Configure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/Configure.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/FormatDateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/FormatDateUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/PayUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/PayUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/RandomStringGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/RandomStringGenerator.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/Util.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.pay/org/wechat/pay/utils/XMLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.pay/org/wechat/pay/utils/XMLParser.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/coupon/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/coupon/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/request/QueryCouponStock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/coupon/request/QueryCouponStock.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/request/SendCouponRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/coupon/request/SendCouponRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/respose/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/coupon/respose/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/coupon/respose/CouponRespose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/coupon/respose/CouponRespose.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/.svn/text-base/test.txt.svn-base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/CouponConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/CouponConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/RedPackConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/RedPackConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/conn/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/BaseRedPackRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/BaseRedPackRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/GethbinfoRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/GethbinfoRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/GroupredpackRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/GroupredpackRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/RedpackRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/request/RedpackRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/BaseRedPackRespose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/BaseRedPackRespose.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/GethbinfoRespose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/GethbinfoRespose.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/HbListItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/HbListItem.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/SendredpackRespose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/respose/SendredpackRespose.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/test/TestRedPackConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/test/TestRedPackConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/test/TestSendEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/test/TestSendEntity.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/CouponUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/CouponUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/SendRedPackUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.redpack/org/wechat/redpack/utils/SendRedPackUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.semantic/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.semantic/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.semantic/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/wechat/semantic/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.semantic/org/wechat/semantic/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/wechat/semantic/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.semantic/org/wechat/semantic/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.semantic/org/wechat/semantic/conn/SemanticConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.semantic/org/wechat/semantic/conn/SemanticConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/conn/ShakeConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/conn/ShakeConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/request/RegisterShakea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/request/RegisterShakea.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/result/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/result/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/result/Auditstatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/result/Auditstatus.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.shakearound/org/wechat/shakea/result/ShakeaResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.shakearound/org/wechat/shakea/result/ShakeaResult.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/ticket/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/ticket/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/conn/.svn/text-base/TicketConn.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/ticket/conn/.svn/text-base/TicketConn.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/conn/TicketConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/ticket/conn/TicketConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/ticket/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.ticket/org/wechat/ticket/test/TestTicketConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.ticket/org/wechat/ticket/test/TestTicketConn.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wecaht/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wecaht/user/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/menum/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wecaht/user/menum/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/menum/.svn/text-base/AuthType.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wecaht/user/menum/.svn/text-base/AuthType.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wecaht/user/menum/AuthType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wecaht/user/menum/AuthType.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/conn/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/conn/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/conn/.svn/text-base/UserConnection.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/conn/.svn/text-base/UserConnection.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/conn/UserConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/conn/UserConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/entity/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/entity/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/entity/.svn/text-base/WeixinUser.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/entity/.svn/text-base/WeixinUser.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/entity/UserOpenListInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/entity/UserOpenListInfo.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/entity/WeixinUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/entity/WeixinUser.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/menum/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/menum/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/menum/.svn/text-base/AuthType.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/menum/.svn/text-base/AuthType.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/menum/AuthType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/menum/AuthType.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/request/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/.svn/text-base/BatchGet.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/request/.svn/text-base/BatchGet.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/BatchGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/request/BatchGet.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/request/BatchGetRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/request/BatchGetRequest.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/test/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/.svn/text-base/TestList.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/test/.svn/text-base/TestList.java.svn-base -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/TestList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/test/TestList.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/TestUserConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/test/TestUserConnection.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/test/TestUserConvertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/test/TestUserConvertUtils.java -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/utils/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/utils/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/org.wechat.user/org/wechat/user/utils/UserConvertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/org.wechat.user/org/wechat/user/utils/UserConvertUtils.java -------------------------------------------------------------------------------- /source/wechatSource/src/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyqian/wechatutils/HEAD/source/wechatSource/src/.svn/entries -------------------------------------------------------------------------------- /source/wechatSource/src/.svn/text-base/test.txt.svn-base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/wechatSource/src/test.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------