org.springframework.jmx.export.assembler.MBeanInfoAssembler Java Examples
The following examples show how to use
org.springframework.jmx.export.assembler.MBeanInfoAssembler.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MBeanExporter.java From spring-analysis-note with MIT License | 2 votes |
/** * Set the implementation of the {@code MBeanInfoAssembler} interface to use * for this exporter. Default is a {@code SimpleReflectiveMBeanInfoAssembler}. * <p>The passed-in assembler can optionally implement the * {@code AutodetectCapableMBeanInfoAssembler} interface, which enables it * to participate in the exporter's MBean autodetection process. * @see org.springframework.jmx.export.assembler.SimpleReflectiveMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.AutodetectCapableMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler * @see #setAutodetect */ public void setAssembler(MBeanInfoAssembler assembler) { this.assembler = assembler; }
Example #2
Source File: MBeanExporter.java From java-technology-stack with MIT License | 2 votes |
/** * Set the implementation of the {@code MBeanInfoAssembler} interface to use * for this exporter. Default is a {@code SimpleReflectiveMBeanInfoAssembler}. * <p>The passed-in assembler can optionally implement the * {@code AutodetectCapableMBeanInfoAssembler} interface, which enables it * to participate in the exporter's MBean autodetection process. * @see org.springframework.jmx.export.assembler.SimpleReflectiveMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.AutodetectCapableMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler * @see #setAutodetect */ public void setAssembler(MBeanInfoAssembler assembler) { this.assembler = assembler; }
Example #3
Source File: MBeanExporter.java From lams with GNU General Public License v2.0 | 2 votes |
/** * Set the implementation of the {@code MBeanInfoAssembler} interface to use * for this exporter. Default is a {@code SimpleReflectiveMBeanInfoAssembler}. * <p>The passed-in assembler can optionally implement the * {@code AutodetectCapableMBeanInfoAssembler} interface, which enables it * to participate in the exporter's MBean autodetection process. * @see org.springframework.jmx.export.assembler.SimpleReflectiveMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.AutodetectCapableMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler * @see #setAutodetect */ public void setAssembler(MBeanInfoAssembler assembler) { this.assembler = assembler; }
Example #4
Source File: MBeanExporter.java From spring4-understanding with Apache License 2.0 | 2 votes |
/** * Set the implementation of the {@code MBeanInfoAssembler} interface to use * for this exporter. Default is a {@code SimpleReflectiveMBeanInfoAssembler}. * <p>The passed-in assembler can optionally implement the * {@code AutodetectCapableMBeanInfoAssembler} interface, which enables it * to participate in the exporter's MBean autodetection process. * @see org.springframework.jmx.export.assembler.SimpleReflectiveMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.AutodetectCapableMBeanInfoAssembler * @see org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler * @see #setAutodetect */ public void setAssembler(MBeanInfoAssembler assembler) { this.assembler = assembler; }