KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > remoting > transport > mock > MockTest


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.transport.mock;
10
11 import java.io.Serializable JavaDoc;
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 $
19  */

20 public class MockTest implements Serializable JavaDoc
21 {
22    String JavaDoc value = "This is some value";
23
24    public MockTest()
25    {
26
27    }
28
29    public String JavaDoc getValue()
30    {
31       return value;
32    }
33 }
34
Popular Tags