Package | Description |
---|---|
org.springframework.jmx.export.annotation |
Java 5 annotations for MBean exposure.
|
org.springframework.jmx.export.metadata |
Provides generic JMX metadata classes and basic support for reading
JMX metadata in a provider-agnostic manner.
|
Modifier and Type | Method and Description |
---|---|
ManagedAttribute |
AnnotationJmxAttributeSource.getManagedAttribute(java.lang.reflect.Method method) |
ManagedMetric |
AnnotationJmxAttributeSource.getManagedMetric(java.lang.reflect.Method method) |
ManagedNotification[] |
AnnotationJmxAttributeSource.getManagedNotifications(java.lang.Class<?> clazz) |
ManagedOperation |
AnnotationJmxAttributeSource.getManagedOperation(java.lang.reflect.Method method) |
ManagedOperationParameter[] |
AnnotationJmxAttributeSource.getManagedOperationParameters(java.lang.reflect.Method method) |
ManagedResource |
AnnotationJmxAttributeSource.getManagedResource(java.lang.Class<?> beanClass) |
Modifier and Type | Method and Description |
---|---|
ManagedAttribute |
JmxAttributeSource.getManagedAttribute(java.lang.reflect.Method method)
Implementations should return an instance of
ManagedAttribute
if the supplied Method has the corresponding metadata. |
ManagedMetric |
JmxAttributeSource.getManagedMetric(java.lang.reflect.Method method)
Implementations should return an instance of
ManagedMetric
if the supplied Method has the corresponding metadata. |
ManagedNotification[] |
JmxAttributeSource.getManagedNotifications(java.lang.Class<?> clazz)
Implementations should return an array of
ManagedNotifications
if the supplied the Class has the corresponding metadata. |
ManagedOperation |
JmxAttributeSource.getManagedOperation(java.lang.reflect.Method method)
Implementations should return an instance of
ManagedOperation
if the supplied Method has the corresponding metadata. |
ManagedOperationParameter[] |
JmxAttributeSource.getManagedOperationParameters(java.lang.reflect.Method method)
Implementations should return an array of
ManagedOperationParameter
if the supplied Method has the corresponding metadata. |
ManagedResource |
JmxAttributeSource.getManagedResource(java.lang.Class<?> clazz)
Implementations should return an instance of
ManagedResource
if the supplied Class has the appropriate metadata. |