com.cedarsoft.annotations.instrumentation.test.CustomThreadAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instrumentation-test Show documentation
Show all versions of instrumentation-test Show documentation
Test module for annotations based instrumentation
package com.cedarsoft.annotations.instrumentation.test;
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 com.cedarsoft.annotations.meta.ThreadDescribingAnnotation;
/**
* @author Johannes Schneider ([email protected])
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target( {ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD, ElementType.CONSTRUCTOR} )
@ThreadDescribingAnnotation("my-custom-thread")
public @interface CustomThreadAnnotation {
}