1 28 package org.objectweb.carol.jndi.ns; 29 30 import java.util.Properties ; 31 32 38 public interface NameService { 39 40 45 void start() throws NameServiceException; 46 47 52 void stop() throws NameServiceException; 53 54 58 boolean isStarted(); 59 60 64 void setPort(int p); 65 66 70 int getPort(); 71 72 76 void setHost(String host); 77 78 81 String getHost(); 82 83 87 void setConfigProperties(Properties p); 88 } | Popular Tags |