FileDocCategorySizeDatePackage
TimerEventFilter.javaAPI DocGlassfish v2 API2521Fri May 04 22:33:46 BST 2007com.sun.enterprise.admin.selfmanagement.event

TimerEventFilter

public class TimerEventFilter extends Object implements NotificationFilter

Fields Summary
private int
id
Constructors Summary
public TimerEventFilter(Integer id)

        this.id = id;
    
Methods Summary
public booleanisNotificationEnabled(javax.management.Notification tnotification)

        Integer id1 = ((TimerNotification)tnotification).getNotificationID();
        if (id1 == id)
            return true;
        else return false;