Package org.osgi.jmx.codec

Examples of org.osgi.jmx.codec.OSGiBundleEvent


  protected BundleListener getBundleListener() {
    return new BundleListener() {
      public void bundleChanged(BundleEvent bundleEvent) {
        Notification notification = new Notification(BUNDLE_EVENT_TYPE,
            objectName, sequenceNumber++);
        notification.setUserData(new OSGiBundleEvent(bundleEvent)
            .asCompositeData());
        sendNotification(notification);
      }
    };
  }
View Full Code Here

TOP

Related Classes of org.osgi.jmx.codec.OSGiBundleEvent

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.