1 9 package org.jboss.test.remoting.transport.mock; 10 11 import java.util.Map ; 12 import org.jboss.remoting.InvokerLocator; 13 import org.jboss.remoting.ServerInvoker; 14 15 21 public class MockServerInvoker extends ServerInvoker 22 { 23 boolean loaded = false; 24 25 public MockServerInvoker(InvokerLocator locator) 26 { 27 super(locator); 28 } 29 30 public MockServerInvoker(InvokerLocator locator, Map configuration) 31 { 32 super(locator, configuration); 33 } 34 35 protected String getDefaultDataType() 36 { 37 return null; 38 } 39 40 47 public boolean isTransportBiDirectional() 48 { 49 return false; 50 } 51 52 } 53 | Popular Tags |