| java.lang.Object org.apache.harmony.lang.management.DynamicMXBeanImpl
All known Subclasses: org.apache.harmony.lang.management.RuntimeMXBeanImpl, org.apache.harmony.lang.management.MemoryManagerMXBeanImpl, org.apache.harmony.lang.management.CompilationMXBeanImpl, org.apache.harmony.lang.management.ClassLoadingMXBeanImpl, org.apache.harmony.lang.management.LoggingMXBeanImpl, org.apache.harmony.lang.management.OperatingSystemMXBeanImpl, org.apache.harmony.lang.management.MemoryPoolMXBeanImpl, org.apache.harmony.lang.management.MemoryMXBeanImpl, org.apache.harmony.lang.management.ThreadMXBeanImpl,
DynamicMXBeanImpl | abstract public class DynamicMXBeanImpl implements DynamicMBean(Code) | | Abstract implementation of the
DynamicMBean interface that provides
behaviour required by a dynamic MBean. This class is subclassed by all of the
concrete MXBean types in this package.
|
Inner Class : enum AttributeAccessType | |
getPresentAttribute | protected MBeanAttributeInfo getPresentAttribute(String attributeName, AttributeAccessType access)(Code) | | Tests to see if this DynamicMXBean has an attribute with
the name attributeName . If the test is passed, the
MBeanAttributeInfo representing the attribute is returned.
Parameters: attributeName - the name of the attribute being queried Parameters: access - an AttributeAccessTypeindication of whether thecaller is looking for a readable or writable attribute. if the named attribute exists and is readable or writable(depending on what was specified in access , aninstance of MBeanAttributeInfo that describes theattribute, otherwise null . |
getPresentOperation | protected MBeanOperationInfo getPresentOperation(String actionName, String[] signature)(Code) | | Tests to see if this DynamicMXBean has an operation with
the name actionName . If the test is passed, the
MBeanOperationInfo representing the operation is returned to the
caller.
Parameters: actionName - the name of a possible method on thisDynamicMXBean Parameters: signature - the list of parameter types for the named operation in thecorrect order if the named operation exists, an instance ofMBeanOperationInfo that describes the operation,otherwise null . |
setMBeanInfo | protected void setMBeanInfo(MBeanInfo info)(Code) | | Parameters: info - |
|
|