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