Package br.gov.frameworkdemoiselle.jmx.internal

Examples of br.gov.frameworkdemoiselle.jmx.internal.NotificationEventListener


      .append( configuration.getNotificationDomain()!=null ? configuration.getNotificationDomain() : "br.gov.frameworkdemoiselle.jmx" )
      .append(":name=")
      .append(configuration.getNotificationMBeanName());
   
    if (mbeanManager.findMBeanInstance(notificationMBeanName.toString()) == null){
      NotificationEventListener listener = Beans.getReference(NotificationEventListener.class);

      ObjectInstance instance = MBeanHelper.register(listener.createNotificationBroadcaster(), notificationMBeanName.toString());
      mbeanManager.storeRegisteredMBean(instance);
    }
  }
View Full Code Here

TOP

Related Classes of br.gov.frameworkdemoiselle.jmx.internal.NotificationEventListener

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.