![JAR search and dependency download from the Maven repository](/logo.png)
org.wf.jwtp.annotation.RequiresPermissions Maven / Gradle / Ivy
The newest version!
package org.wf.jwtp.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 权限判断注解
*
* @author wangfan
*/
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface RequiresPermissions {
String[] value();
/**
* 多个权限的逻辑操作,是and还是or,默认是and
*/
Logical logical() default Logical.AND;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy