1 23 24 28 29 package com.sun.enterprise.admin.selfmanagement.event; 30 31 import javax.management.ObjectName ; 32 import javax.management.NotificationFilter ; 33 34 38 public interface Event { 39 ObjectName getObjectName(); 40 String getType(); 41 NotificationFilter getNotificationFilter(); 42 String getDescription(); 43 void destroy(); 44 String DOMAIN_NAME = "com.sun.appserver.selfmanagement"; 46 String DEFAULT_KEY = "eventname"; 47 } 48 | Popular Tags |