Uses of Class
javax.management.MBeanParameterInfo

Packages that use MBeanParameterInfo
javax.management   
javax.management.modelmbean   
javax.management.openmbean   
 

Uses of MBeanParameterInfo in javax.management
 

Methods in javax.management that return MBeanParameterInfo
 MBeanParameterInfo[] MBeanConstructorInfo.getSignature()
          Returns the signature of the method, that is, information on the operation's arguments.
 MBeanParameterInfo[] MBeanOperationInfo.getSignature()
          Returns the signature of the method, that is, information on the operation's arguments.
 

Methods in javax.management with parameters of type MBeanParameterInfo
protected  java.lang.String StandardMBean.getDescription(MBeanConstructorInfo ctor, MBeanParameterInfo param, int sequence)
          Customization hook: Get the description that will be used for the sequence MBeanParameterInfo of the MBeanConstructorInfo returned by this MBean.
protected  java.lang.String StandardMBean.getParameterName(MBeanConstructorInfo ctor, MBeanParameterInfo param, int sequence)
          Customization hook: Get the name that will be used for the sequence MBeanParameterInfo of the MBeanConstructorInfo returned by this MBean.
protected  java.lang.String StandardMBean.getParameterName(MBeanOperationInfo op, MBeanParameterInfo param, int sequence)
          Customization hook: Get the name that will be used for the sequence MBeanParameterInfo of the MBeanOperationInfo returned by this MBean.
protected  java.lang.String StandardMBean.getDescription(MBeanOperationInfo op, MBeanParameterInfo param, int sequence)
          Customization hook: Get the description that will be used for the sequence MBeanParameterInfo of the MBeanOperationInfo returned by this MBean.
 

Constructors in javax.management with parameters of type MBeanParameterInfo
MBeanConstructorInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature)
          Constructs an MBeanConstructorInfo object.
MBeanOperationInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature, java.lang.String type, int impact)
          Constructs an MBeanOperationInfo object.
 

Uses of MBeanParameterInfo in javax.management.modelmbean
 

Constructors in javax.management.modelmbean with parameters of type MBeanParameterInfo
ModelMBeanOperationInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature, java.lang.String type, int impact)
          Constructs a ModelMBeanOperationInfo object with a default descriptor.
ModelMBeanOperationInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature, java.lang.String type, int impact, Descriptor descriptor)
          Constructs a ModelMBeanOperationInfo object.
ModelMBeanConstructorInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature)
          Constructs a ModelMBeanConstructorInfo object with a default descriptor.
ModelMBeanConstructorInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature, Descriptor descriptor)
          Constructs a MBeanConstructorInfo object.
 

Uses of MBeanParameterInfo in javax.management.openmbean
 

Subclasses of MBeanParameterInfo in javax.management.openmbean
 class OpenMBeanParameterInfoSupport
          Describes a parameter used in one or more operations or constructors of an open MBean.
 

Methods in javax.management.openmbean that return MBeanParameterInfo
 MBeanParameterInfo[] OpenMBeanOperationInfo.getSignature()
          Returns an array of OpenMBeanParameterInfo instances describing each parameter in the signature of the operation described by this OpenMBeanOperationInfo instance.
 MBeanParameterInfo[] OpenMBeanConstructorInfo.getSignature()
          Returns an array of OpenMBeanParameterInfo instances describing each parameter in the signature of the constructor described by this OpenMBeanConstructorInfo instance.