1 23 24 package com.sun.enterprise.admin.selfmanagement.event; 25 26 import javax.management.NotificationFilter ; 27 import javax.management.Notification ; 28 import javax.management.timer.TimerNotification ; 29 30 31 public class TimerEventFilter implements NotificationFilter { 32 public TimerEventFilter(Integer id) { 33 this.id = id; 34 } 35 36 public boolean isNotificationEnabled(Notification tnotification) { 37 Integer id1 = ((TimerNotification )tnotification).getNotificationID(); 38 if (id1 == id) 39 return true; 40 else return false; 41 } 42 private int id; 43 } 44 45 | Popular Tags |