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

org.modeshape.jmx.Details Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
package org.modeshape.jmx;

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 javax.management.DescriptorKey;

/**
 * Annotation which adds JMX additional information via {@link DescriptorKey} to any MBean, method or parameter. This additional
 * information may be exposed by JMX clients, allowing better interaction with the MBean(s).
 *
 * @author Horia Chiorean ([email protected])
 */
@Documented
@Target( {ElementType.TYPE, ElementType.PARAMETER, ElementType.METHOD})
@Retention( RetentionPolicy.RUNTIME)
public @interface Details {
    @DescriptorKey("details")
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy