160161162163164165166167168169170171172173
{ Map stats = null; try { JMSDestinationRuntimeMBean bean = getMBean(destination); AttributeList attributes = bean.getAttributes(JMS_DEST_MONITOR_ATTRIB_NAMES); stats = new TreeMap(); for (Iterator i = attributes.iterator(); i.hasNext();) {
334335336337338339340341342343344
{ MBeanHome home = getHome(this.context); ObjectName name = getJmsDestMBeanName(destination); JMSDestinationRuntimeMBean bean = (JMSDestinationRuntimeMBean)home.getMBean(name); log.debug("Found MBean: " + bean); return bean; }