javax.management
Class MBeanFeatureInfojava.lang.Objec | +--javax.management.MBeanFeatureInfo
Direct Known Subclasses:
- MBeanAttributeInfo, MBeanConstructorInfo, MBeanNotificationInfo, MBeanOperationInfo, MBeanParameterInfo
- public class
MBeanFeatureInfo
- extends java.lang.Object
- implements java.io.Serializable
Provides general information for an MBean descriptor object. The feature described can be an attribute, an operation, a parameter, a returned value or a notification.
Version:
- 1.6
Author:
- Cosimo Vampo, Massimiliano Parlione
See Also:
- Serialized Form
Field Summary
protected java.lang.String description
The human readable description of the feature.protected java.lang.String name
The name of the feature.
Constructor Summary
java.lang.String, java.lang.String)">MBeanFeatureInfo(java.lang.String name, java.lang.String description)
Constructs an MBeanFeatureInfo object.
Method Summary
java.lang.String getDescription()
Returns the human readable description of the feature.java.lang.String getName()
Returns the name of the feature.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Field Detail
name
protected java.lang.Stringname
- The name of the feature.
description
protected java.lang.Stringdescription
- The human readable description of the feature.
java.lang.String, java.lang.String)">
Constructor Detail
MBeanFeatureInfo
publicMBeanFeatureInfo
(java.lang.String name, java.lang.String description)
- Constructs an MBeanFeatureInfo object.
Parameters:
- name - The name of the feature.
- description - A human readable description of the feature.
Method Detail
getName
public java.lang.StringgetName
()
- Returns the name of the feature.
getDescription
public java.lang.StringgetDescription
()
- Returns the human readable description of the feature.