| java.lang.Object javax.management.MBeanFeatureInfo javax.management.MBeanOperationInfo
All known Subclasses: javax.management.openmbean.OpenMBeanOperationInfoSupport, javax.management.modelmbean.ModelMBeanOperationInfo,
Field Summary | |
final public static int | ACTION Management operation impact: ACTION. | final public static int | ACTION_INFO Management operation impact: ACTION_INFO. | final public static int | INFO Management operation impact: INFO. | final public static int | UNKNOWN Management operation impact: UNKNOWN. |
ACTION | final public static int ACTION(Code) | | Management operation impact: ACTION. The operation changes the state
of the MBean component (write operation).
|
ACTION_INFO | final public static int ACTION_INFO(Code) | | Management operation impact: ACTION_INFO. Operation behaves like a
read/write operation.
|
INFO | final public static int INFO(Code) | | Management operation impact: INFO. The operation should not alter the
state of the MBean component (read operation).
|
UNKNOWN | final public static int UNKNOWN(Code) | | Management operation impact: UNKNOWN. Reserved for Standard MBeans.
|
MBeanOperationInfo | public MBeanOperationInfo(String description, Method method) throws IllegalArgumentException(Code) | | Constructs management operation metadata from a given Method
object and description.
Parameters: description - human readable description of this operation Parameters: method - used for build the metadata for the management operation |
clone | public synchronized Object clone()(Code) | | Creates a copy of this object. This is a deep copy; the MBeanParameterInfo objects
forming the operation's signature are also cloned.
a clone of this object |
getReturnType | public String getReturnType()(Code) | | Returns a fully qualified class name of the return type of this operation.
fully qualified class name |
getSignature | public MBeanParameterInfo[] getSignature()(Code) | | Returns the signature of this operation. Note: an operation with a void
signature returns a zero-length array, not a null reference.
operation's signature |
hashCode | public int hashCode()(Code) | | |
toString | public String toString()(Code) | | a human readable string |
|
|