javax.management
public class: MBeanParameterInfo [javadoc |
source]
java.lang.Object
javax.management.MBeanFeatureInfo
javax.management.MBeanParameterInfo
All Implemented Interfaces:
Cloneable, DescriptorRead, Serializable
Direct Known Subclasses:
OpenMBeanParameterInfoSupport
Describes an argument of an operation exposed by an MBean.
Instances of this class are immutable. Subclasses may be mutable
but this is not recommended.
Field Summary |
---|
static final long | serialVersionUID | |
static final MBeanParameterInfo[] | NO_PARAMS | |
Constructor: |
public MBeanParameterInfo(String name,
String type,
String description) {
this(name, type, description, (Descriptor) null);
}
Constructs an 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.
|
public MBeanParameterInfo(String name,
String type,
String description,
Descriptor descriptor) {
super(name, description, descriptor);
this.type = type;
}
Constructs an 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.
descriptor - The descriptor for the operation. This may be null
which is equivalent to an empty descriptor.
- since:
1.6 -
|
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |