Removed javadoc refs to JMX commons attribute source

This commit is contained in:
Luke Taylor 2009-11-13 15:40:17 +00:00
parent fc2d8ba73f
commit a0b71d867f
1 changed files with 14 additions and 19 deletions

View File

@ -45,18 +45,14 @@ import org.springframework.util.StringUtils;
* *
* <p>Uses the {@link JmxAttributeSource} strategy interface, so that * <p>Uses the {@link JmxAttributeSource} strategy interface, so that
* metadata can be read using any supported implementation. Out of the box, * metadata can be read using any supported implementation. Out of the box,
* two strategies are included: * Spring provides an implementation based on JDK 1.5+ annotations,
* <ul> * <code>AnnotationJmxAttributeSource</code>.
* <li><code>AttributesJmxAttributeSource</code>, for Commons Attributes
* <li><code>AnnotationJmxAttributeSource</code>, for JDK 1.5+ annotations
* </ul>
* *
* @author Rob Harrop * @author Rob Harrop
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Jennifer Hickey * @author Jennifer Hickey
* @since 1.2 * @since 1.2
* @see #setAttributeSource * @see #setAttributeSource
* @see org.springframework.jmx.export.metadata.AttributesJmxAttributeSource
* @see org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource * @see org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource
*/ */
public class MetadataMBeanInfoAssembler extends AbstractReflectiveMBeanInfoAssembler public class MetadataMBeanInfoAssembler extends AbstractReflectiveMBeanInfoAssembler
@ -86,7 +82,6 @@ public class MetadataMBeanInfoAssembler extends AbstractReflectiveMBeanInfoAssem
/** /**
* Set the <code>JmxAttributeSource</code> implementation to use for * Set the <code>JmxAttributeSource</code> implementation to use for
* reading the metadata from the bean class. * reading the metadata from the bean class.
* @see org.springframework.jmx.export.metadata.AttributesJmxAttributeSource
* @see org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource * @see org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource
*/ */
public void setAttributeSource(JmxAttributeSource attributeSource) { public void setAttributeSource(JmxAttributeSource attributeSource) {