| MyObject.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.dbtest.interfaces;
import java.io.Serializable;
import java.io.IOException;
public class MyObject implements Serializable
{
static final long serialVersionUID = -8672568397278908684L;
public String aString;
public MyObject()
{
aString = "dummy";
}
}
| MyObject.java |