de.dagere.kopeme.annotations.KoPeMeIgnore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kopeme-core Show documentation
Show all versions of kopeme-core Show documentation
KoPeMe performance testing core
package de.dagere.kopeme.annotations;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This is a marker interface that indicates that the annotated method should not be used by KoPeMe or Peass.
*
* @author DaGeRe
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ TYPE, METHOD })
public @interface KoPeMeIgnore {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy