1 package org.jboss.mx.remoting.service; 2 3 import java.io.IOException ; 4 import javax.management.MBeanRegistration ; 5 6 9 public interface JMXConnectorServerServiceMBean extends MBeanRegistration  10 { 11 void create() throws Exception ; 12 13 void start() throws Exception ; 14 15 void stop() throws IOException ; 16 17 void destroy(); 18 19 void setRegistryPort(int registryPort); 20 21 int getRegistryPort(); 22 23 void setBindAddress(String bindAddress); 24 25 String getBindAddress(); 26 27 String getJndiPath(); 28 29 void setJndiPath(String jndiPath); 30 } 31 | Popular Tags |