com.purej.vminspect.data.MBeanParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purej-vminspect Show documentation
Show all versions of purej-vminspect Show documentation
An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface
// 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