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

com.purej.vminspect.data.MBeanParameter Maven / Gradle / Ivy

Go to download

An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface

There is a newer version: 2.1.1
Show newest version
// Copyright (c), 2013, adopus consulting GmbH Switzerland, all rights reserved.
package com.purej.vminspect.data;

/**
 * Represents an MBean operation parameter.
 *
 * @author Stefan Mueller
 */
public class MBeanParameter {
  private final String _name;
  private final String _type;
  private final String _description;

  /**
   * Creates a new instance of this class.
   */
  public MBeanParameter(String name, String type, String description) {
    _name = name;
    _type = type;
    _description = description;
  }

  /**
   * Returns the parameter name.
   */
  public String getName() {
    return _name;
  }

  /**
   * Returns the parameter type.
   */
  public String getType() {
    return _type;
  }

  /**
   * Returns the parameter description.
   */
  public String getDescription() {
    return _description;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy