Annotation Type Condition
-
@Inherited @Retention(RUNTIME) @Target(METHOD) public @interface ConditionAnnotation to mark a method as a rule condition. Must annotate any public method with no arguments and that returns a boolean value.
@Inherited
@Retention(RUNTIME)
@Target(METHOD)
public @interface Condition