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

com.blade.ioc.annotation.Bean Maven / Gradle / Ivy

package com.blade.ioc.annotation;

import java.lang.annotation.*;

/**
 * Bean annotations can be injected
 *
 * @author biezhi
 * @since 1.5
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Bean {

    String value() default "";

    @Deprecated
    boolean singleton() default true;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy