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;
import org.qi4j.api.injection.InjectionScope;
/**
* Annotation to denote the injection of an
* association into a parameter (either constructor
* or method)
*/
@Retention( RetentionPolicy.RUNTIME )
@Target( ElementType.PARAMETER )
@Documented
@InjectionScope
public @interface AssociationParameter
{
/** Name of the association. */
String value();
}