1 7 package org.jboss.remoting.transport; 8 9 12 public interface ConnectorMBean 13 { 14 15 18 void start() throws java.lang.Exception ; 19 20 26 void start(boolean runAsNewThread) throws java.lang.Exception ; 27 28 31 void stop(); 32 33 36 void create() throws java.lang.Exception ; 37 38 41 void destroy(); 42 43 46 org.jboss.remoting.InvokerLocator getLocator(); 47 48 51 void setInvokerLocator(java.lang.String locator) throws java.lang.Exception ; 52 53 56 java.lang.String getInvokerLocator() throws java.lang.Exception ; 57 58 61 void setConfiguration(org.w3c.dom.Element xml) throws java.lang.Exception ; 62 63 66 org.w3c.dom.Element getConfiguration(); 67 68 76 org.jboss.remoting.ServerInvocationHandler addInvocationHandler(java.lang.String subsystem, javax.management.ObjectName handlerObjectName) throws java.lang.Exception ; 77 78 82 org.jboss.remoting.ServerInvocationHandler addInvocationHandler(java.lang.String subsystem, org.jboss.remoting.ServerInvocationHandler handler) throws java.lang.Exception ; 83 84 87 void removeInvocationHandler(java.lang.String subsystem) throws java.lang.Exception ; 88 89 } 90 | Popular Tags |