Package javax.management

Examples of javax.management.NotificationBroadcasterSupport$WildcardListenerInfo


   }

   public void testSimpleFilteredOutNotification()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      NotificationFilterSupport filter = new NotificationFilterSupport();
      filter.disableType(DEFAULT_TYPE);
      broadcaster.addNotificationListener(listener, filter, null);

      clear();
      createNotification(broadcaster);

      compare(apply(sent, filter), received(listener, null));
View Full Code Here


   }

   public void testSimpleNotificationWithHandback()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      Object handback = new Object();
      broadcaster.addNotificationListener(listener, null, handback);

      clear();
      createNotification(broadcaster);

      compare(sent, received(listener, handback));
View Full Code Here

   }

   public void testTwoNotifications()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      broadcaster.addNotificationListener(listener, null, null);

      clear();
      createNotification(broadcaster);
      createNotification(broadcaster);
View Full Code Here

   }

   public void testTwoNotificationsWithDifferentTypes()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      NotificationFilterSupport filter = new NotificationFilterSupport();
      filter.enableType(DEFAULT_TYPE);
      filter.enableType(ANOTHER_TYPE);
      broadcaster.addNotificationListener(listener, filter, null);

      clear();
      createNotification(broadcaster);
      createNotification(broadcaster, ANOTHER_TYPE);
View Full Code Here

   }

   public void testTwoNotificationsWithDifferentTypesOneFilteredOut()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      NotificationFilterSupport filter = new NotificationFilterSupport();
      filter.enableType(DEFAULT_TYPE);
      broadcaster.addNotificationListener(listener, filter, null);

      clear();
      createNotification(broadcaster);
      createNotification(broadcaster, ANOTHER_TYPE);
View Full Code Here

   }

   public void testTwoListeners()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener1 = new Listener();
      broadcaster.addNotificationListener(listener1, null, null);
      Listener listener2 = new Listener();
      broadcaster.addNotificationListener(listener2, null, null);

      clear();
      createNotification(broadcaster);

      compare(sent, received(listener1, null));
View Full Code Here

   }

   public void testOneListenerRegisteredTwice()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      broadcaster.addNotificationListener(listener, null, null);
      broadcaster.addNotificationListener(listener, null, null);

      clear();
      createNotification(broadcaster);

      ArrayList copySent = new ArrayList(sent);
View Full Code Here

   }

   public void testOneListenerRegisteredTwiceOneFilteredOut()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      broadcaster.addNotificationListener(listener, null, null);
      NotificationFilterSupport filter = new NotificationFilterSupport();
      filter.disableType(DEFAULT_TYPE);
      broadcaster.addNotificationListener(listener, filter, null);

      clear();
      createNotification(broadcaster);

      compare(sent, received(listener, null));
View Full Code Here

   }

   public void testOneListenerRegisteredWithDifferentHandbacks()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      Object handback1 = new Object();
      broadcaster.addNotificationListener(listener, null, handback1);
      Object handback2 = new Object();
      broadcaster.addNotificationListener(listener, null, handback2);

      clear();
      createNotification(broadcaster);

      compare(sent, received(listener, handback1));
View Full Code Here

   }

   public void testOneListenerRegisteredWithDifferentHandbacksOneFilteredOut()
      throws Exception
   {
      NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

      Listener listener = new Listener();
      Object handback1 = new Object();
      broadcaster.addNotificationListener(listener, null, handback1);
      Object handback2 = new Object();
      NotificationFilterSupport filter = new NotificationFilterSupport();
      filter.disableType(DEFAULT_TYPE);
      broadcaster.addNotificationListener(listener, filter, handback2);

      clear();
      createNotification(broadcaster);

      compare(sent, received(listener, handback1));
View Full Code Here

TOP

Related Classes of javax.management.NotificationBroadcasterSupport$WildcardListenerInfo

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.