javax.management
Class MBeanFeatureInfo
java.lang.Object
|
+--javax.management.MBeanFeatureInfo
- All Implemented Interfaces:
- java.io.Serializable
- 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.
- Author:
- Young Yang
- 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 |
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 |
name
protected java.lang.String name
- The name of the feature.
description
protected java.lang.String description
- The human readable description of the feature.
MBeanFeatureInfo
public MBeanFeatureInfo(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.
getName
public java.lang.String getName()
- Returns the name of the feature.
getDescription
public java.lang.String getDescription()
- Returns the human readable description of the feature.