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

org.infinispan.jmx.annotations.MBean Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.jmx.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Classes annotated with this will be exposed as MBeans. If you are looking for more fined grained way of exposing JMX
 * attributes/operations, take a look at {@link org.infinispan.jmx.annotations.ManagedAttribute} and {@link
 * org.infinispan.jmx.annotations.ManagedOperation}
 *
 * @author [email protected]
 * @since 4.0
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Inherited
public @interface MBean {
   String objectName() default "";

   String description() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy