1 7 package test.sample.simple; 8 9 import javax.management.NotificationBroadcasterSupport ; 10 import javax.management.Notification ; 11 12 15 public class Sample extends NotificationBroadcasterSupport implements SampleMBean 16 { 17 private static int sequence = 0; 18 19 public String doSomething(String param) 20 { 21 sendNotification(new Notification ("Sample notification", this, sequence++)); 22 return param; 23 } 24 25 } | Popular Tags |