1 23 24 28 29 34 35 package com.sun.enterprise.management.support.oldconfig; 36 37 import javax.management.NotificationListener ; 38 import javax.management.NotificationFilter ; 39 40 41 public interface OldHTTPAccessLogMBean 42 { 43 public boolean getIponly(); 44 public void setIponly( final boolean value ); 45 46 public String getLogDirectory(); 47 public void setLogDirectory( final String value ); 48 49 50 public void addNotificationListener( final NotificationListener param1, final NotificationFilter param2, final Object param3 ); 52 public boolean destroyConfigElement(); 53 public String getDefaultAttributeValue( final String attributeName ); 54 public javax.management.MBeanNotificationInfo [] getNotificationInfo(); 55 public void removeNotificationListener( final NotificationListener param1 ); 56 public void removeNotificationListener( final NotificationListener param1, final NotificationFilter param2, final Object param3 ); 57 public void sendNotification( final javax.management.Notification param1 ); 58 59 } | Popular Tags |