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

org.test4j.annotations.Named Maven / Gradle / Ivy

package org.test4j.annotations;

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

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * 对stub bean name定义
 */
@SuppressWarnings("rawtypes")
@Retention(RUNTIME)
@Target(ANNOTATION_TYPE)
public @interface Named {
    /**
     * bean名称
     */
    String name();

    /**
     * bean实现类
     */
    Class type();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy