1 19 package fr.dyade.aaa.agent; 20 21 public interface NetworkMBean { 22 27 public String getName(); 28 29 35 public boolean isRunning(); 36 37 38 public void start() throws Exception ; 39 40 41 public void stop(); 42 43 48 public String toString(); 49 50 55 public long getWDActivationPeriod(); 56 57 62 public void setWDActivationPeriod(long WDActivationPeriod); 63 64 69 public int getWDNbRetryLevel1(); 70 71 76 public void setWDNbRetryLevel1(int WDNbRetryLevel1); 77 78 83 public long getWDRetryPeriod1(); 84 85 90 public void setWDRetryPeriod1(long WDRetryPeriod1); 91 92 97 public int getWDNbRetryLevel2(); 98 99 104 public void setWDNbRetryLevel2(int WDNbRetryLevel2); 105 106 111 public long getWDRetryPeriod2(); 112 113 118 public void setWDRetryPeriod2(long WDRetryPeriod2); 119 120 125 public long getWDRetryPeriod3(); 126 127 132 public void setWDRetryPeriod3(long WDRetryPeriod3); 133 134 139 public int getNbWaitingMessages(); 140 } 141 | Popular Tags |