1 9 package org.jboss.remoting.detection.jndi; 10 11 import org.jboss.remoting.detection.Detector; 12 13 14 20 public interface JNDIDetectorMBean extends Detector 21 { 22 public int getPort(); 23 24 public void setPort(int port); 25 26 public String getHost(); 27 28 public void setHost(String host); 29 30 public String getContextFactory(); 31 32 public void setContextFactory(String contextFactory); 33 34 public String getURLPackage(); 35 36 public void setURLPackage(String urlPackage); 37 38 public int getCleanDetectionNumber(); 39 40 public void setCleanDetectionNumber(int cleanDetectionNumber); 41 42 } 43 | Popular Tags |