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

net.sf.andromedaioc.annotation.Bean Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.annotation;

import net.sf.andromedaioc.model.beans.ScopeType;

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

/**
 * Bean annotation. Mark class to be put and accessible from context
 *
 * @author Alexey Mitrov
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Bean {
    String id() default "";
    ScopeType scope() default ScopeType.SINGLE_TONE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy