All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.seepine.secret.annotation.Role Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta.53
Show newest version
package com.seepine.secret.annotation;

import java.lang.annotation.*;

/**
 * 鉴权,作用于方法上
 *
 * @author seepine
 * @since 1.0.0
 */
@Documented
@Inherited
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Role {
  /**
   * 必须包含所有角色才能通过
   *
   * @return [role1, role2...]
   */
  String[] value() default {};

  /**
   * 满足任意一个角色即可通过
   *
   * @return [role1, role2...]
   */
  String[] or() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy