javax.management
Class MBeanConstructorInfo
java.lang.Object
|
+--javax.management.MBeanFeatureInfo
|
+--javax.management.MBeanConstructorInfo
- public class MBeanConstructorInfo
- extends MBeanFeatureInfo
- implements java.io.Serializable
The MBeanConstructorInfo object describes a constructor
exposed by an MBean.
- See Also:
- Serialized Form
Constructor Summary |
MBeanConstructorInfo(java.lang.String description,
java.lang.reflect.Constructor constructor)
Constructs a MBeanConstructorInfo object. |
MBeanConstructorInfo(java.lang.String name,
java.lang.String description,
MBeanParameterInfo[] signature)
Constructs a MBeanConstructorInfo object. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
MBeanConstructorInfo
public MBeanConstructorInfo(java.lang.String description,
java.lang.reflect.Constructor constructor)
- Constructs a MBeanConstructorInfo object.
- Parameters:
method
- The java.lang.reflect.Method object describing the MBean operation.description
- A human readable description of the operation.
MBeanConstructorInfo
public MBeanConstructorInfo(java.lang.String name,
java.lang.String description,
MBeanParameterInfo[] signature)
- Constructs a MBeanConstructorInfo object.
- Parameters:
name
- The name of the constructor.description
- A human readable description of the constructor.signature
- MBeanParameterInfo objects describing the parameters(arguments) of the constructor.
getSignature
public MBeanParameterInfo[] getSignature()
- Returns the signature of the method, that is, information on the operations arguments.