mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-01-22 02:52:03 +08:00
🎨 fix javadoc by removing @date
This commit is contained in:
@@ -15,7 +15,7 @@ import java.util.concurrent.TimeUnit;
|
||||
* 消息去重,记录消息ID首次出现时的时间戳,
|
||||
* 15S后定时任务触发时废除该记录消息ID
|
||||
* </p>
|
||||
* @date 2022/5/26 1:32
|
||||
* created on 2022/5/26 1:32
|
||||
*/
|
||||
@Slf4j
|
||||
public class WxMessageInMemoryDuplicateCheckerSingleton implements WxMessageDuplicateChecker {
|
||||
|
||||
@@ -4,7 +4,7 @@ package me.chanjar.weixin.common.bean;
|
||||
* 包含toJson()方法的接口.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-10-05
|
||||
* created on 2020-10-05
|
||||
*/
|
||||
public interface ToJson {
|
||||
/**
|
||||
|
||||
@@ -11,7 +11,7 @@ import java.io.Serializable;
|
||||
* oauth2用户个人信息.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-10-11
|
||||
* created on 2020-10-11
|
||||
*/
|
||||
@Data
|
||||
public class WxOAuth2UserInfo implements Serializable {
|
||||
|
||||
@@ -10,7 +10,7 @@ import java.io.Serializable;
|
||||
* OCR身份证识别结果.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2019-06-23
|
||||
* created on 2019-06-23
|
||||
*/
|
||||
@Data
|
||||
public class WxOcrIdCardResult implements Serializable {
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.io.Serializable;
|
||||
* .
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2021-01-27
|
||||
* created on 2021-01-27
|
||||
*/
|
||||
@Data
|
||||
public class CategoryData implements Serializable {
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.io.Serializable;
|
||||
* .
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2021-01-27
|
||||
* created on 2021-01-27
|
||||
*/
|
||||
@Data
|
||||
public class PubTemplateKeyword implements Serializable {
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.io.Serializable;
|
||||
* .
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2021-01-27
|
||||
* created on 2021-01-27
|
||||
*/
|
||||
@Data
|
||||
public class TemplateInfo implements Serializable {
|
||||
|
||||
@@ -4,7 +4,7 @@ package me.chanjar.weixin.common.error;
|
||||
* WxJava专用的runtime exception.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-09-26
|
||||
* created on 2020-09-26
|
||||
*/
|
||||
public class WxRuntimeException extends RuntimeException {
|
||||
private static final long serialVersionUID = 4881698471192264412L;
|
||||
|
||||
@@ -21,7 +21,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author : zhayueran
|
||||
* @date 2019/6/27 14:06
|
||||
* created on 2019/6/27 14:06
|
||||
*/
|
||||
public class OcrDiscernApacheHttpRequestExecutor extends OcrDiscernRequestExecutor<CloseableHttpClient, HttpHost> {
|
||||
public OcrDiscernApacheHttpRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -13,7 +13,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author zhayueran
|
||||
* @date 2019/6/27 15:06
|
||||
* created on 2019/6/27 15:06
|
||||
*/
|
||||
public abstract class OcrDiscernRequestExecutor<H, P> implements RequestExecutor<String, File> {
|
||||
protected RequestHttp<H, P> requestHttp;
|
||||
|
||||
@@ -8,7 +8,7 @@ import me.chanjar.weixin.common.error.WxErrorException;
|
||||
* oauth2 相关接口.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-08-08
|
||||
* created on 2020-08-08
|
||||
*/
|
||||
public interface WxOAuth2Service {
|
||||
/**
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.io.File;
|
||||
* https://mp.weixin.qq.com/wiki?t=resource/res_main&id=21516712284rHWMX
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2019-06-22
|
||||
* created on 2019-06-22
|
||||
*/
|
||||
public interface WxOcrService {
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ import me.chanjar.weixin.common.error.WxErrorException;
|
||||
* 微信服务接口.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-04-25
|
||||
* created on 2020-04-25
|
||||
*/
|
||||
public interface WxService {
|
||||
/**
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.util.Arrays;
|
||||
/**
|
||||
*
|
||||
* @author Daniel Qian
|
||||
* @date 14/10/19
|
||||
* created on 14/10/19
|
||||
*/
|
||||
public class SHA1 {
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ import java.io.Serializable;
|
||||
* InputStreamData
|
||||
*
|
||||
* @author zichuan.zhou91@gmail.com
|
||||
* @date 2022/2/15
|
||||
* created on 2022/2/15
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
|
||||
@@ -25,7 +25,7 @@ import java.io.InputStream;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
public class ApacheMediaDownloadRequestExecutor extends BaseMediaDownloadRequestExecutor<CloseableHttpClient, HttpHost> {
|
||||
public ApacheMediaDownloadRequestExecutor(RequestHttp requestHttp, File tmpDirFile) {
|
||||
|
||||
@@ -23,7 +23,7 @@ import java.io.IOException;
|
||||
* 文件输入流上传.
|
||||
*
|
||||
* @author meiqin.zhou91@gmail.com
|
||||
* @date 2022/02/15
|
||||
* created on 2022/02/15
|
||||
*/
|
||||
public class ApacheMediaInputStreamUploadRequestExecutor extends MediaInputStreamUploadRequestExecutor<CloseableHttpClient, HttpHost> {
|
||||
public ApacheMediaInputStreamUploadRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -16,7 +16,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/4
|
||||
* created on 2017/5/4
|
||||
*/
|
||||
public class ApacheSimpleGetRequestExecutor extends SimpleGetRequestExecutor<CloseableHttpClient, HttpHost> {
|
||||
public ApacheSimpleGetRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -18,7 +18,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/4
|
||||
* created on 2017/5/4
|
||||
*/
|
||||
public class ApacheSimplePostRequestExecutor extends SimplePostRequestExecutor<CloseableHttpClient, HttpHost> {
|
||||
public ApacheSimplePostRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -25,7 +25,7 @@ import java.nio.charset.StandardCharsets;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
public class JoddHttpMediaDownloadRequestExecutor extends BaseMediaDownloadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
public JoddHttpMediaDownloadRequestExecutor(RequestHttp requestHttp, File tmpDirFile) {
|
||||
|
||||
@@ -22,7 +22,7 @@ import java.nio.charset.StandardCharsets;
|
||||
* 文件输入流上传.
|
||||
*
|
||||
* @author meiqin.zhou91@gmail.com
|
||||
* @date 2022/02/15
|
||||
* created on 2022/02/15
|
||||
*/
|
||||
public class JoddHttpMediaInputStreamUploadRequestExecutor extends MediaInputStreamUploadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
public JoddHttpMediaInputStreamUploadRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -20,7 +20,7 @@ import java.nio.charset.StandardCharsets;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
public class JoddHttpMediaUploadRequestExecutor extends MediaUploadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
public JoddHttpMediaUploadRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -18,7 +18,7 @@ import java.nio.charset.StandardCharsets;
|
||||
|
||||
/**
|
||||
* @author liming1019
|
||||
* @date 2021/8/10
|
||||
* created on 2021/8/10
|
||||
*/
|
||||
@Slf4j
|
||||
public class JoddHttpMinishopMediaUploadRequestCustomizeExecutor extends MinishopUploadRequestCustomizeExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
|
||||
@@ -22,7 +22,7 @@ import java.nio.charset.StandardCharsets;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
@Slf4j
|
||||
public class JoddHttpMinishopMediaUploadRequestExecutor extends MinishopUploadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
|
||||
@@ -17,7 +17,7 @@ import java.nio.charset.StandardCharsets;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/4
|
||||
* created on 2017/5/4
|
||||
*/
|
||||
public class JoddHttpSimpleGetRequestExecutor extends SimpleGetRequestExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
public JoddHttpSimpleGetRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -17,7 +17,7 @@ import java.nio.charset.StandardCharsets;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/4
|
||||
* created on 2017/5/4
|
||||
*/
|
||||
public class JoddHttpSimplePostRequestExecutor extends SimplePostRequestExecutor<HttpConnectionProvider, ProxyInfo> {
|
||||
public JoddHttpSimplePostRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -21,7 +21,7 @@ import java.io.IOException;
|
||||
/**
|
||||
*.
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
@Slf4j
|
||||
public class OkHttpMediaDownloadRequestExecutor extends BaseMediaDownloadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
|
||||
@@ -17,7 +17,7 @@ import java.io.InputStream;
|
||||
* 文件输入流上传.
|
||||
*
|
||||
* @author meiqin.zhou91@gmail.com
|
||||
* @date 2022/02/15
|
||||
* created on 2022/02/15
|
||||
*/
|
||||
public class OkHttpMediaInputStreamUploadRequestExecutor extends MediaInputStreamUploadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
public OkHttpMediaInputStreamUploadRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
public class OkHttpMediaUploadRequestExecutor extends MediaUploadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
public OkHttpMediaUploadRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -14,7 +14,7 @@ import java.io.IOException;
|
||||
|
||||
/**
|
||||
* @author liming1019
|
||||
* @date 2021/8/10
|
||||
* created on 2021/8/10
|
||||
*/
|
||||
@Slf4j
|
||||
public class OkHttpMinishopMediaUploadRequestCustomizeExecutor extends MinishopUploadRequestCustomizeExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
|
||||
@@ -18,7 +18,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/5
|
||||
* created on 2017/5/5
|
||||
*/
|
||||
@Slf4j
|
||||
public class OkHttpMinishopMediaUploadRequestExecutor extends MinishopUploadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
|
||||
@@ -14,7 +14,7 @@ import java.io.IOException;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/4
|
||||
* created on 2017/5/4
|
||||
*/
|
||||
public class OkHttpSimpleGetRequestExecutor extends SimpleGetRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
public OkHttpSimpleGetRequestExecutor(RequestHttp requestHttp) {
|
||||
|
||||
@@ -14,7 +14,7 @@ import java.util.Objects;
|
||||
* .
|
||||
*
|
||||
* @author ecoolper
|
||||
* @date 2017/5/4
|
||||
* created on 2017/5/4
|
||||
*/
|
||||
@Slf4j
|
||||
public class OkHttpSimplePostRequestExecutor extends SimplePostRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.thoughtworks.xstream.converters.basic.StringConverter;
|
||||
* Integer型数组转换器.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2019-08-22
|
||||
* created on 2019-08-22
|
||||
*/
|
||||
public class IntegerArrayConverter extends StringConverter {
|
||||
@Override
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.thoughtworks.xstream.converters.basic.StringConverter;
|
||||
* Long型数组转换器.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2019-08-22
|
||||
* created on 2019-08-22
|
||||
*/
|
||||
public class LongArrayConverter extends StringConverter {
|
||||
@Override
|
||||
|
||||
@@ -11,7 +11,7 @@ import static org.testng.Assert.assertTrue;
|
||||
* @author jiangby
|
||||
* @version 1.0
|
||||
* @description: 作用
|
||||
* @date 2022/5/26 1:46
|
||||
* created on 2022/5/26 1:46
|
||||
*/
|
||||
@Test
|
||||
public class WxMessageInMemoryDuplicateCheckerSingletonTest {
|
||||
|
||||
@@ -6,7 +6,7 @@ import org.testng.annotations.Test;
|
||||
/**
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-06-06
|
||||
* created on 2020-06-06
|
||||
*/
|
||||
public class WxNetCheckResultTest {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
* GsonHelper 的单元测试.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-09-04
|
||||
* created on 2020-09-04
|
||||
*/
|
||||
public class GsonHelperTest {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user