1 7 8 package test.compliance.server.support; 9 10 import javax.management.Notification; 11 import javax.management.NotificationBroadcasterSupport; 12 13 20 public class Broadcaster 21 extends NotificationBroadcasterSupport 22 implements BroadcasterMBean 23 { 24 long sequence = 0; 25 public void doSomething() 26 { 27 sendNotification(new Notification("test", this, ++sequence)); 28 } 29 } 30 | Popular Tags |