1 16 17 package org.springframework.jmx.export.assembler; 18 19 import java.lang.reflect.Method ; 20 21 30 public class SimpleReflectiveMBeanInfoAssembler extends AbstractConfigurableMBeanInfoAssembler { 31 32 35 protected boolean includeReadAttribute(Method method, String beanKey) { 36 return true; 37 } 38 39 42 protected boolean includeWriteAttribute(Method method, String beanKey) { 43 return true; 44 } 45 46 49 protected boolean includeOperation(Method method, String beanKey) { 50 return true; 51 } 52 53 } 54 | Popular Tags |