KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > remoting > marshall > dynamic > local > MarshallerLoadingConstants


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.test.remoting.marshall.dynamic.local;
10
11 import org.jboss.remoting.InvokerLocator;
12
13 /**
14  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
15  */

16 public interface MarshallerLoadingConstants
17 {
18    // Default locator values
19
static String JavaDoc transport = "socket";
20    static String JavaDoc host = "localhost";
21    static int port = 5300;
22
23    static String JavaDoc dataType = "test";
24    static String JavaDoc 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