1 7 package org.jboss.remoting.marshall.dynamic.remote.socket; 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 = 5400; 20 static int loaderPort = 5401; 21 22 static String dataType = "test"; 23 static String locatorURI = transport + "://" + host + ":" + port + "/?" + 24 InvokerLocator.DATATYPE + "=" + dataType + "&" + 25 InvokerLocator.LOADER_PORT + "=" + loaderPort + "&" + 26 InvokerLocator.MARSHALLER + "=" + "org.jboss.remoting.marshall.dynamic.TestMarshaller" + "&" + 27 InvokerLocator.UNMARSHALLER + "=" + "org.jboss.remoting.marshall.dynamic.TestUnMarshaller"; 28 ; 29 } 30 | Popular Tags |