home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / jmx.jar / javax / management / timer / TimerMBean.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-10-28  |  1.4 KB  |  50 lines

  1. package javax.management.timer;
  2.  
  3. import java.util.Date;
  4. import java.util.Vector;
  5. import javax.management.InstanceNotFoundException;
  6.  
  7. public interface TimerMBean {
  8.    void start();
  9.  
  10.    void stop();
  11.  
  12.    boolean isActive();
  13.  
  14.    Integer addNotification(String var1, String var2, Object var3, Date var4) throws IllegalArgumentException;
  15.  
  16.    Integer addNotification(String var1, String var2, Object var3, Date var4, long var5) throws IllegalArgumentException;
  17.  
  18.    Integer addNotification(String var1, String var2, Object var3, Date var4, long var5, long var7) throws IllegalArgumentException;
  19.  
  20.    void removeNotification(Integer var1) throws InstanceNotFoundException;
  21.  
  22.    void removeNotifications(String var1) throws InstanceNotFoundException;
  23.  
  24.    void removeAllNotifications();
  25.  
  26.    int getNbNotifications();
  27.  
  28.    Vector getAllNotificationIDs();
  29.  
  30.    Vector getNotificationIDs(String var1);
  31.  
  32.    String getNotificationType(Integer var1);
  33.  
  34.    String getNotificationMessage(Integer var1);
  35.  
  36.    Object getNotificationUserData(Integer var1);
  37.  
  38.    Date getDate(Integer var1);
  39.  
  40.    Long getPeriod(Integer var1);
  41.  
  42.    Long getNbOccurences(Integer var1);
  43.  
  44.    boolean getSendPastNotifications();
  45.  
  46.    void setSendPastNotifications(boolean var1);
  47.  
  48.    boolean isEmpty();
  49. }
  50.