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.remoting.transport.mock;10 11 import java.io.Serializable ;12 13 /**14 * MockTest - This is just an empty class for testing complex object returns.15 * It does nothing other than provide an object payload to be passed around.16 *17 * @author <a HREF="mailto:jhaynie@vocalocity.net">Jeff Haynie</a>18 * @version $Revision: 1.1.2.2 $19 */20 public class MockTest implements Serializable 21 {22 String value = "This is some value";23 24 public MockTest()25 {26 27 }28 29 public String getValue()30 {31 return value;32 }33 }34