import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This is used to annotate annotation types
* which are used for injection.
* Each scope signifies a particular scope from
* which the injection value should be taken.
*/
@Retention( RetentionPolicy.RUNTIME )
@Target( { ElementType.ANNOTATION_TYPE } )
@Documented
public @interface InjectionScope
{
}