| java.lang.Object org.springframework.jmx.export.metadata.AttributesJmxAttributeSource
afterPropertiesSet | public void afterPropertiesSet()(Code) | | |
getManagedAttribute | public ManagedAttribute getManagedAttribute(Method method) throws InvalidMetadataException(Code) | | If the specified method has a ManagedAttribute attribute,
then it is returned. Otherwise returns null.
Parameters: method - the method to read the attribute data from the attribute, or null if not found throws: InvalidMetadataException - if more than one attribute exists,or if the supplied method does not represent a JavaBean property |
getManagedOperation | public ManagedOperation getManagedOperation(Method method)(Code) | | If the specified method has a ManagedOperation attribute,
then it is returned. Otherwise return null.
Parameters: method - the method to read the attribute data from the attribute, or null if not found throws: InvalidMetadataException - if more than one attribute exists,or if the supplied method represents a JavaBean property |
getManagedOperationParameters | public ManagedOperationParameter[] getManagedOperationParameters(Method method) throws InvalidMetadataException(Code) | | If the specified method has ManagedOperationParameter attributes,
then these are returned, otherwise a zero length array is returned.
Parameters: method - the method to get the managed operation parameters for the array of ManagedOperationParameter objects throws: InvalidMetadataException - if the number of ManagedOperationParameterattributes does not match the number of parameters in the method |
getManagedResource | public ManagedResource getManagedResource(Class clazz)(Code) | | If the specified class has a ManagedResource attribute,
then it is returned. Otherwise returns null.
Parameters: clazz - the class to read the attribute data from the attribute, or null if not found throws: InvalidMetadataException - if more than one attribute exists |
|
|