1 23 24 28 29 34 35 package com.sun.enterprise.management.support.oldconfig; 36 37 import javax.management.NotificationListener ; 38 import javax.management.ObjectName ; 39 import javax.management.AttributeList ; 40 import javax.management.NotificationFilter ; 41 42 44 45 public interface OldEJBTimerServiceMBean 46 { 47 48 public String getMaxRedeliveries(); 49 public void setMaxRedeliveries( final String value ); 50 51 public String getMinimumDeliveryIntervalInMillis(); 52 public void setMinimumDeliveryIntervalInMillis( final String value ); 53 54 public String getRedeliveryIntervalInternalInMillis(); 55 public void setRedeliveryIntervalInternalInMillis( final String value ); 56 57 public String getTimerDatasource(); 58 public void setTimerDatasource( final String value ); 59 60 61 public void addNotificationListener( final NotificationListener param1, final NotificationFilter param2, final Object param3 ); 63 public boolean destroyConfigElement(); 64 public String getDefaultAttributeValue( final String attributeName ); 65 public javax.management.MBeanNotificationInfo [] getNotificationInfo(); 66 public javax.management.AttributeList getProperties(); 67 public Object getPropertyValue( final String propertyName ); 68 public void removeNotificationListener( final NotificationListener param1 ); 69 public void removeNotificationListener( final NotificationListener param1, final NotificationFilter param2, final Object param3 ); 70 public void sendNotification( final javax.management.Notification param1 ); 71 public void setProperty( final javax.management.Attribute nameAndValue ); 72 73 } | Popular Tags |