FileDocCategorySizeDatePackage
LifeCycleNotificationFilter.javaAPI DocGlassfish v2 API2527Fri May 04 22:33:44 BST 2007com.sun.enterprise.admin.selfmanagement.event

LifeCycleNotificationFilter

public class LifeCycleNotificationFilter extends Object implements NotificationFilter

Fields Summary
private String
type
Constructors Summary
public LifeCycleNotificationFilter(String type)

        this.type = type;
    
Methods Summary
public booleanisNotificationEnabled(javax.management.Notification notification)

        if ("*".equals(type)) {
            return true;
        }
        if (type.equals(notification.getType()))
            return true;
        else
            return false;