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

nl.vpro.jmx.Name Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package nl.vpro.jmx;

import java.lang.annotation.*;

import javax.management.DescriptorKey;

import static java.lang.annotation.ElementType.*;

/**
 * This annotation can be used to add a name to a mx bean parameter
 *
 * @author Michiel Meeuwissen
 * @since 2.18
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({PARAMETER})
public @interface Name {
    @DescriptorKey("name")
    String value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy