类 SimpleReflectiveMBeanInfoAssembler

所有已实现的接口:
MBeanInfoAssembler

public class SimpleReflectiveMBeanInfoAssembler extends AbstractConfigurableMBeanInfoAssembler
Simple subclass of AbstractReflectiveMBeanInfoAssembler that always votes yes for method and property inclusion, effectively exposing all public methods and properties as operations and attributes.
从以下版本开始:
4.0
作者:
Rob Harrop, Juergen Hoeller
  • 构造器详细资料

    • SimpleReflectiveMBeanInfoAssembler

      public SimpleReflectiveMBeanInfoAssembler()
  • 方法详细资料

    • includeReadAttribute

      protected boolean includeReadAttribute(Method method, String beanKey)
      Always returns true.
      指定者:
      includeReadAttribute 在类中 AbstractReflectiveMBeanInfoAssembler
      参数:
      method - the accessor Method
      beanKey - the key associated with the MBean in the beans map of the MBeanExporter
      返回:
      true if the accessor should be included in the management interface, otherwise false
    • includeWriteAttribute

      protected boolean includeWriteAttribute(Method method, String beanKey)
      Always returns true.
      指定者:
      includeWriteAttribute 在类中 AbstractReflectiveMBeanInfoAssembler
      参数:
      method - the mutator Method.
      beanKey - the key associated with the MBean in the beans map of the MBeanExporter
      返回:
      true if the mutator should be included in the management interface, otherwise false
    • includeOperation

      protected boolean includeOperation(Method method, String beanKey)
      Always returns true.
      指定者:
      includeOperation 在类中 AbstractReflectiveMBeanInfoAssembler
      参数:
      method - the operation method
      beanKey - the key associated with the MBean in the beans map of the MBeanExporter
      返回:
      whether the operation should be included in the management interface