1 22 package org.jboss.tm.remoting.server; 23 24 import java.util.List ; 25 26 import org.jboss.remoting.InvokerLocator; 27 import org.jboss.system.ServiceMBean; 28 29 35 public interface DistributedTransactionManagerMBean 36 extends ServiceMBean 37 { 38 List getConnectors(); 39 40 void setConnectors(List connectors); 41 42 InvokerLocator[] getLocators(); 43 44 String [] getLocatorURIs(); 45 46 boolean getInterpositionEnabled(); 47 48 void setInterpositionEnabled(boolean newValue); 49 } 50 | Popular Tags |