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

com.github.houbb.sensitive.annotation.condition.SenstiveConditionAlwaysTrue Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package com.github.houbb.sensitive.annotation.condition;

import com.github.houbb.sensitive.annotation.metadata.SensitiveCondition;
import com.github.houbb.sensitive.api.impl.ConditionAlwaysTrue;

import java.lang.annotation.*;

/**
 * 恒为真条件注解
 * 1. 当用户自定义的时候,可以允许用户不定义对应的策略,但是我们目前支持定义。
 * 如果用户定义了其他方法,我们不做处理。
 * @author binbin.hou
 * date 2019/1/9
 * @since 0.0.2
 */
@Inherited
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@SensitiveCondition(ConditionAlwaysTrue.class)
public @interface SenstiveConditionAlwaysTrue {

    /**
     * 条件对应的策略
     * 1. 当为默认值时,则说明当前指定的所有策略都生效
     * 2. 如果指定了具体的值,则只有当前条件生效时,对应的策略才会生效
     * 3. 如果指定了多个条件注解,则按照注解的默认获取顺序,依次判断条件是否生效,依次指定生效条件的策略。
     * @return 对应的策略列表
     */
    Class[] strategy() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy