org.javastack.metrics.jmx.Description Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-tomcat Show documentation
Show all versions of metrics-tomcat Show documentation
Metrics for Tomcat via JMX
The newest version!
package org.javastack.metrics.jmx;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({
CONSTRUCTOR, METHOD, PARAMETER, TYPE
})
public @interface Description {
String value();
}