1 22 package org.jboss.monitor.services; 23 24 import javax.management.ObjectName ; 25 26 import org.jboss.system.ServiceMBean; 27 28 37 public interface TimerServiceMBean extends ServiceMBean 38 { 39 41 44 void setNotificationType(String type); 45 String getNotificationType(); 46 47 50 void setNotificationMessage(String message); 51 String getNotificationMessage(); 52 53 57 void setTimerPeriod(String timerPeriod); 58 String getTimerPeriod(); 59 60 63 void setRepeatitions(long repeatitions); 64 long getRepeatitions(); 65 66 69 void setFixedRate(boolean fixedRate); 70 boolean getFixedRate(); 71 72 75 void setTimerMBean(ObjectName timerMBean); 76 ObjectName getTimerMBean(); 77 78 } 79 | Popular Tags |