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

org.infinispan.factories.components.JmxOperationParameter Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.factories.components;

import java.io.Serializable;

import javax.management.MBeanParameterInfo;

/**
 * JmxOperationParameter stores metadata information about MBean operation parameters which
 * is then used at runtime to build the relevant {@link MBeanParameterInfo}
 *
 * @author Tristan Tarrant
 * @since 5.2.3
 */
public class JmxOperationParameter implements Serializable {
   final String name;
   final String type;
   final String description;

   public JmxOperationParameter(String name, String type, String description) {
      this.name = name;
      this.type = type;
      this.description = description;
   }

   public String getName() {
      return name;
   }

   public String getType() {
      return type;
   }

   public String getDescription() {
      return description;
   }

   @Override
   public String toString() {
      return "JmxOperationParameter [name=" + name + ", type=" + type + ", description=" + description + "]";
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy