1 package org.jboss.remoting; 2 3 import java.io.IOException ; 4 import java.util.Map ; 5 6 9 public interface ServerInvokerMBean 10 { 11 19 String getDataType(); 20 21 28 boolean isTransportBiDirectional(); 29 30 void create(); 31 32 37 void start() throws IOException ; 38 39 44 boolean isStarted(); 45 46 49 void stop(); 50 51 54 void destroy(); 55 56 62 void setConfigration(Map configuration); 63 64 69 Map getConfiguration(); 70 71 74 String getClientConnectAddress(); 75 76 int getClientConnectPort(); 77 78 87 void setClientConnectAddress(String clientConnectAddress); 88 89 String getServerBindAddress(); 90 91 int getServerBindPort(); 92 93 void setClientConnectPort(int clientConnectPort); 94 } 95 | Popular Tags |