Class AnnotationJmxAttributeSource
java.lang.Object
org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanFactoryAware,JmxAttributeSource
public class AnnotationJmxAttributeSource
extends Object
implements JmxAttributeSource, org.springframework.beans.factory.BeanFactoryAware
Implementation of the
JmxAttributeSource interface that
reads annotations and exposes the corresponding attributes.- Since:
- 1.2
- Author:
- Rob Harrop, Juergen Hoeller, Jennifer Hickey, Stephane Nicoll
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetManagedAttribute(Method method) Implementations should return an instance ofManagedAttributeif the suppliedMethodhas the corresponding metadata.getManagedMetric(Method method) Implementations should return an instance ofManagedMetricif the suppliedMethodhas the corresponding metadata.getManagedNotifications(Class<?> clazz) Implementations should return an array ofManagedNotificationsif the suppliedClasshas the corresponding metadata.getManagedOperation(Method method) Implementations should return an instance ofManagedOperationif the suppliedMethodhas the corresponding metadata.getManagedOperationParameters(Method method) Implementations should return an array ofManagedOperationParameterif the suppliedMethodhas the corresponding metadata.getManagedResource(Class<?> beanClass) Implementations should return an instance ofManagedResourceif the suppliedClasshas the appropriate metadata.voidsetBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory)
-
Constructor Details
-
AnnotationJmxAttributeSource
public AnnotationJmxAttributeSource()
-
-
Method Details
-
setBeanFactory
public void setBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory) - Specified by:
setBeanFactoryin interfaceorg.springframework.beans.factory.BeanFactoryAware
-
getManagedResource
@Nullable public ManagedResource getManagedResource(Class<?> beanClass) throws InvalidMetadataException Description copied from interface:JmxAttributeSourceImplementations should return an instance ofManagedResourceif the suppliedClasshas the appropriate metadata. Otherwise, should returnnull.- Specified by:
getManagedResourcein interfaceJmxAttributeSource- Parameters:
beanClass- the class to read the attribute data from- Returns:
- the attribute, or
nullif not found - Throws:
InvalidMetadataException- in case of invalid attributes
-
getManagedAttribute
@Nullable public ManagedAttribute getManagedAttribute(Method method) throws InvalidMetadataException Description copied from interface:JmxAttributeSourceImplementations should return an instance ofManagedAttributeif the suppliedMethodhas the corresponding metadata. Otherwise, should returnnull.- Specified by:
getManagedAttributein interfaceJmxAttributeSource- Parameters:
method- the method to read the attribute data from- Returns:
- the attribute, or
nullif not found - Throws:
InvalidMetadataException- in case of invalid attributes
-
getManagedMetric
Description copied from interface:JmxAttributeSourceImplementations should return an instance ofManagedMetricif the suppliedMethodhas the corresponding metadata. Otherwise, should returnnull.- Specified by:
getManagedMetricin interfaceJmxAttributeSource- Parameters:
method- the method to read the attribute data from- Returns:
- the metric, or
nullif not found - Throws:
InvalidMetadataException- in case of invalid attributes
-
getManagedOperation
@Nullable public ManagedOperation getManagedOperation(Method method) throws InvalidMetadataException Description copied from interface:JmxAttributeSourceImplementations should return an instance ofManagedOperationif the suppliedMethodhas the corresponding metadata. Otherwise, should returnnull.- Specified by:
getManagedOperationin interfaceJmxAttributeSource- Parameters:
method- the method to read the attribute data from- Returns:
- the attribute, or
nullif not found - Throws:
InvalidMetadataException- in case of invalid attributes
-
getManagedOperationParameters
public ManagedOperationParameter[] getManagedOperationParameters(Method method) throws InvalidMetadataException Description copied from interface:JmxAttributeSourceImplementations should return an array ofManagedOperationParameterif the suppliedMethodhas the corresponding metadata. Otherwise, should return an empty array if no metadata is found.- Specified by:
getManagedOperationParametersin interfaceJmxAttributeSource- Parameters:
method- theMethodto read the metadata from- Returns:
- the parameter information.
- Throws:
InvalidMetadataException- in the case of invalid attributes.
-
getManagedNotifications
public ManagedNotification[] getManagedNotifications(Class<?> clazz) throws InvalidMetadataException Description copied from interface:JmxAttributeSourceImplementations should return an array ofManagedNotificationsif the suppliedClasshas the corresponding metadata. Otherwise, should return an empty array.- Specified by:
getManagedNotificationsin interfaceJmxAttributeSource- Parameters:
clazz- theClassto read the metadata from- Returns:
- the notification information
- Throws:
InvalidMetadataException- in the case of invalid metadata
-