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

org.infinispan.doclets.jmx.MBeanAttribute Maven / Gradle / Ivy

package org.infinispan.doclets.jmx;

/**
 * An MBean attribute
 *
 * @author Manik Surtani
 * @since 4.0
 */
public class MBeanAttribute extends JmxComponent {
   public boolean writable;
   public String type;

   @Override
   public String toString() {
      return "Attribute(name = " + name + ", writable = " + writable + ", type = " + type + ", desc = " + desc + ")";
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy