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 OldManagerPropertiesMBean extends OldProperties 42 { 43 public String getMaxSessions(); 44 public void setMaxSessions( final String value ); 45 46 public String getReapIntervalInSeconds(); 47 public void setReapIntervalInSeconds( final String value ); 48 49 public String getSessionFileName(); 50 public void setSessionFileName( final String value ); 51 52 public String getSessionIdGeneratorClassname(); 53 public void setSessionIdGeneratorClassname( final String value ); 54 55 56 public void addNotificationListener( final NotificationListener param1, final NotificationFilter param2, final Object param3 ); 58 public boolean destroyConfigElement(); 59 public String getDefaultAttributeValue( final String attributeName ); 60 public javax.management.MBeanNotificationInfo [] getNotificationInfo(); 61 public void removeNotificationListener( final NotificationListener param1 ); 62 public void removeNotificationListener( final NotificationListener param1, final NotificationFilter param2, final Object param3 ); 63 public void sendNotification( final javax.management.Notification param1 ); 64 65 } | Popular Tags |