Java javax.management MBeanOperationInfo fields, constructors, methods, implement or subclass

Example usage for Java javax.management MBeanOperationInfo fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.management MBeanOperationInfo.

The text is from its open source code.

Field

intINFO
Indicates that the operation is read-like: it returns information but does not change any state.
intACTION
Indicates that the operation is write-like: it has an effect but does not return any information from the MBean.
intACTION_INFO
Indicates that the operation is both read-like and write-like: it has an effect, and it also returns information from the MBean.
intUNKNOWN
Indicates that the impact of the operation is unknown or cannot be expressed using one of the other values.

Constructor

Method

StringgetDescription()
Returns the human-readable description of the feature.
StringgetName()
Returns the name of the feature.
StringgetReturnType()
Returns the type of the method's return value.
MBeanParameterInfo[]getSignature()

Returns the list of parameters for this operation.