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

import java.io.Serializable;
import org.jboss.test.jrmp.interfaces.IString;

public class AString implements IString, Serializable
{
   static final long serialVersionUID = -110242846785047470L;
   private String theString;

    public AString(String theString)
    {
        this.theString = theString;
    }
    public String toString()
    {
        return theString;
    }
}