1 9 package org.jboss.remoting.detection; 10 11 import org.w3c.dom.Element ; 12 13 18 public interface AbstractDetectorMBean 19 { 20 27 public void setConfiguration(Element xml) throws Exception ; 28 29 35 public Element getConfiguration(); 36 37 43 void setHeartbeatTimeDelay(long heartbeatTimeDelay); 44 45 50 long getHeartbeatTimeDelay(); 51 52 59 void setDefaultTimeDelay(long defaultTimeDelay) throws IllegalArgumentException ; 60 61 65 long getDefaultTimeDelay(); 66 } 67 | Popular Tags |