com.gitee.starblues.annotation.Caller Maven / Gradle / Ivy
package com.gitee.starblues.annotation;
/**
* 调用者的注解。配合 @Supplier 注解使用, 两者结合实现插件中的方法调用。
*
* @author starBlues
* @version 2.4.0
*/
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Caller {
/**
* 调用者的全局唯一key. 也就是Supplier 中定义的key.
* @return String
*/
String value();
/**
* 可指定调用哪一个插件
* @return 插件id
*/
String pluginId() default "";
/**
* 调用者方法注解。配合 @Supper.Method 使用。如果不定义, 则以方法名称为准。
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@interface Method {
/**
* 方法名
* @return String
*/
String value();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy