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

top.yonyong.yconfig.config.aop.MyConfig Maven / Gradle / Ivy

There is a newer version: 1.1.0.RELEASE
Show newest version
package top.yonyong.yconfig.config.aop;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @author yonyong
 */
@Target({ElementType.FIELD,ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyConfig {

    String value() default "";
    Class clazz() default MyConfig.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy