Example usage for Java javax.management MBeanOperationInfo fields, constructors, methods, implement or subclass
The text is from its open source code.
int | INFO Indicates that the operation is read-like: it returns information but does not change any state. |
int | ACTION Indicates that the operation is write-like: it has an effect but does not return any information from the MBean. |
int | ACTION_INFO Indicates that the operation is both read-like and write-like: it has an effect, and it also returns information from the MBean. |
int | UNKNOWN Indicates that the impact of the operation is unknown or cannot be expressed using one of the other values. |
MBeanOperationInfo(String description, Method method) Constructs an MBeanOperationInfo object. | |
MBeanOperationInfo(String name, String description, MBeanParameterInfo[] signature, String type, int impact) Constructs an MBeanOperationInfo object. |
String | getDescription() Returns the human-readable description of the feature. |
String | getName() Returns the name of the feature. |
String | getReturnType() Returns the type of the method's return value. |
MBeanParameterInfo[] | getSignature() Returns the list of parameters for this operation. |