Package groovy.jmx
Class GroovyMBean
java.lang.Object
groovy.lang.GroovyObjectSupport
groovy.jmx.GroovyMBean
- All Implemented Interfaces:
groovy.lang.GroovyObject
public class GroovyMBean
extends groovy.lang.GroovyObjectSupport
A GroovyObject facade for an underlying MBean which acts like a normal
groovy object but which is actually implemented via
an underlying JMX MBean.
Properties and normal method invocations
delegate to the MBeanServer to the actual MBean.
-
Constructor Summary
Constructors Constructor Description GroovyMBean(MBeanServerConnection server, String objectName)GroovyMBean(MBeanServerConnection server, String objectName, boolean ignoreErrors)GroovyMBean(MBeanServerConnection server, ObjectName name)GroovyMBean(MBeanServerConnection server, ObjectName name, boolean ignoreErrors) -
Method Summary
Modifier and Type Method Description protected StringcreateOperationKey(String operation, int params)Construct a simple key based on the method name and the number of parametersprotected String[]createSignature(MBeanOperationInfo info)StringdescribeAttribute(String attributeName)Description of the specified attribute name.protected StringdescribeAttribute(MBeanAttributeInfo attr)Description of the specified attribute name.List<String>describeOperation(String operationName)Get the description of the specified operation.protected StringdescribeOperation(MBeanOperationInfo operation)Description of the operation.ObjectgetProperty(String property)MBeanInfoinfo()ObjectinvokeMethod(String method, Object arguments)Collection<String>listAttributeDescriptions()List of string representations of all of the attributes on the MBean.Collection<String>listAttributeNames()List of the names of each of the attributes on the MBeanList<String>listAttributeValues()The values of each of the attributes on the MBeanCollection<String>listOperationDescriptions()Description of all of the operations available on the MBean.Collection<String>listOperationNames()Names of all the operations available on the MBean.ObjectNamename()MBeanServerConnectionserver()voidsetProperty(String property, Object value)StringtoString()Return an end user readable representation of the underlying MBeanMethods inherited from class groovy.lang.GroovyObjectSupport
getMetaClass, setMetaClass
-
Constructor Details
-
GroovyMBean
public GroovyMBean(MBeanServerConnection server, String objectName) throws JMException, IOException- Throws:
JMExceptionIOException
-
GroovyMBean
public GroovyMBean(MBeanServerConnection server, String objectName, boolean ignoreErrors) throws JMException, IOException- Throws:
JMExceptionIOException
-
GroovyMBean
- Throws:
JMExceptionIOException
-
GroovyMBean
public GroovyMBean(MBeanServerConnection server, ObjectName name, boolean ignoreErrors) throws JMException, IOException- Throws:
JMExceptionIOException
-
-
Method Details
-
server
-
name
-
info
-
getProperty
-
setProperty
-
invokeMethod
-
createSignature
-
createOperationKey
Construct a simple key based on the method name and the number of parameters- Parameters:
operation- - the mbean operation nameparams- - the number of parameters the operation supports- Returns:
- simple unique identifier for a method
-
listAttributeNames
List of the names of each of the attributes on the MBean- Returns:
- list of attribute names
-
listAttributeValues
The values of each of the attributes on the MBean- Returns:
- list of values of each attribute
-
listAttributeDescriptions
List of string representations of all of the attributes on the MBean.- Returns:
- list of descriptions of each attribute on the mbean
-
describeAttribute
Description of the specified attribute name.- Parameters:
attr- - the attribute- Returns:
- String the description
-
describeAttribute
Description of the specified attribute name.- Parameters:
attributeName- - stringified name of the attribute- Returns:
- the description
-
listOperationNames
Names of all the operations available on the MBean.- Returns:
- all the operations on the MBean
-
listOperationDescriptions
Description of all of the operations available on the MBean.- Returns:
- full description of each operation on the MBean
-
describeOperation
Get the description of the specified operation. This returns a Collection since operations can be overloaded and one operationName can have multiple forms.- Parameters:
operationName- the name of the operation to describe- Returns:
- Collection of operation description
-
describeOperation
Description of the operation.- Parameters:
operation- the operation to describe- Returns:
- pretty-printed description
-
toString
Return an end user readable representation of the underlying MBean
-