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

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

package org.infinispan.doclets.jmx;

import java.util.LinkedList;
import java.util.List;

/**
 * * An MBean component
 *
 * @author Manik Surtani
 * @since 4.0
 */
public class MBeanComponent extends JmxComponent {
   public String className;
   public List operations = new LinkedList();
   public List attributes = new LinkedList();

   @Override
   public String toString() {
      return "MBean component " + name + " (class " + className + ") op = " + operations + " attr = " + attributes;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy