1 9 package org.jboss.test.remoting.marshall.dynamic.local; 10 11 import org.jboss.remoting.InvokerLocator; 12 13 16 public interface MarshallerLoadingConstants 17 { 18 static String transport = "socket"; 20 static String host = "localhost"; 21 static int port = 5300; 22 23 static String dataType = "test"; 24 static String locatorURI = transport + "://" + host + ":" + port + "/?" + 25 InvokerLocator.DATATYPE + "=" + dataType + "&" + 26 InvokerLocator.MARSHALLER + "=" + "org.jboss.test.remoting.marshall.dynamic.local.TestMarshaller" + "&" + 27 InvokerLocator.UNMARSHALLER + "=" + "org.jboss.test.remoting.marshall.dynamic.local.TestUnMarshaller"; 28 } 29 | Popular Tags |