fix javadoc warning
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user