io.cucumber.needle.NeedleInjectionProvider Maven / Gradle / Ivy
package io.cucumber.needle;
import de.akquinet.jbosscc.needle.injection.InjectionProvider;
import org.apiguardian.api.API;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to mark InjectionProviders in the cucumber glue or cucumber steps.
* Should be placed on fields of type {@link InjectionProvider} or an array of
* those.
*/
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
@API(status = API.Status.STABLE)
public @interface NeedleInjectionProvider {
}