/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.testbean2.interfaces;

import java.io.Serializable;
import java.io.IOException;

public class MyObject implements Serializable
{

   static final long serialVersionUID = 1558710897786297403L;
   public String aString;


   public MyObject()
   {
      aString = "dummy";
   }

}