com.github.fashionbrot.function.GetAnnotationFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-auth Show documentation
Show all versions of common-auth Show documentation
common-auth 认证框架 https://github.com/fashionbrot/common
The newest version!
package com.github.fashionbrot.function;
import java.lang.reflect.Method;
/**
* 获取接口方法注解权限
*/
@FunctionalInterface
public interface GetAnnotationFunction {
String[] value(Method method);
}