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