javax.management
Class MBeanParameterInfo

java.lang.Object
  |
  +--javax.management.MBeanFeatureInfo
        |
        +--javax.management.MBeanParameterInfo

public class MBeanParameterInfo
extends MBeanFeatureInfo
implements java.io.Serializable

The MBeanParameterInfo object describes an argument of an operation exposed ny an MBean.

See Also:
Serialized Form

Fields inherited from class javax.management.MBeanFeatureInfo
description, name
 
Constructor Summary
MBeanParameterInfo(java.lang.String name, java.lang.String type, java.lang.String description)
          Constructs a MBeanParameterInfo object.
 
Method Summary
 java.lang.String getType()
          Returns the type or class name of the data.
 
Methods inherited from class javax.management.MBeanFeatureInfo
getDescription, getName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MBeanParameterInfo

public MBeanParameterInfo(java.lang.String name,
                          java.lang.String type,
                          java.lang.String description)
Constructs a MBeanParameterInfo object.
Parameters:
name - The name of the data
type - The type or class name of the data
description - A human readable description of the data. Optional.
Method Detail

getType

public java.lang.String getType()
Returns the type or class name of the data.