fix javadoc warning

This commit is contained in:
Timi
2026-01-04 17:27:36 +08:00
parent ec7f4ecaa9
commit a9156e07f4
32 changed files with 587 additions and 11 deletions

View File

@@ -11,6 +11,7 @@ import java.lang.annotation.Annotation;
/**
* 抽象验证令牌
*
* @param <A> 注解类型
* @author 夜雨
* @version 2021-08-16 18:07
*/
@@ -18,6 +19,11 @@ public abstract class RequiredTokenAbstractInterceptor<A extends Annotation> imp
private final Class<A> annotation;
/**
* 创建 Token 验证拦截器
*
* @param annotation 注解类型
*/
public RequiredTokenAbstractInterceptor(Class<A> annotation) {
this.annotation = annotation;
}