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

io.cucumber.needle.NeedleInjectionProvider Maven / Gradle / Ivy

There is a newer version: 6.11.0
Show newest version
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 {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy