Package org.xmlBlaster.util.admin.extern

Examples of org.xmlBlaster.util.admin.extern.JmxMBeanHandle


         Object obj = jmxMap.get(keys[i]);
         String name = keys[i];
         ContextNode child = new ContextNode(ContextNode.CONTRIB_MARKER_TAG, name, this.contextNode);
         log.info("MBean '" + name + "' found. Will attach it as '" + child.getRelativeName() + "' to '" + this.contextNode.getAbsoluteName() + "'");
         try {
            JmxMBeanHandle mBeanHandle = this.global.registerMBean(child, obj);
            this.jmxHandleSet.add(mBeanHandle);
         }
         catch(XmlBlasterException e) {
            log.severe(e.getMessage());
         }
View Full Code Here


      }
   }
  
   public void registerMBean() {
      if (this.id != null) {
         JmxMBeanHandle handle = this.mbeanHandle;
         this.mbeanHandle = null;
         if (handle != null)
            this.glob.unregisterMBean(handle);
        
         if (this.glob instanceof ServerScope) {
View Full Code Here

         }
      }
   }

   public void shutdown() {
      JmxMBeanHandle handle = this.mbeanHandle;
      this.mbeanHandle = null;
      if (handle != null)
         this.glob.unregisterMBean(handle);
   }
View Full Code Here

TOP

Related Classes of org.xmlBlaster.util.admin.extern.JmxMBeanHandle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.