![JAR search and dependency download from the Maven repository](/logo.png)
org.avaje.metric.annotation.NotTimed Maven / Gradle / Ivy
The newest version!
package org.avaje.metric.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marker that timed execution statistics should NOT be collected on this class.
*
* Note that timed execution can be automatically added to JAX-RS endpoints and
* Spring beans and this annotation can be used to exclude specific beans as
* desired.
*
*/
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface NotTimed {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy