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

com.plugin.development.annotation.ConfigDefinition Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.plugin.development.annotation;

import java.lang.annotation.*;

/**
 * 插件配置文件对应的bean定义注解
 * @author zhangzhuo
 * @version 1.0
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ConfigDefinition {


    /**
     * 插件中的配置文件的名称
     * @return 配置文件名称
     */
    String value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy