| CtsCmp.java |
/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.test.cts.interfaces;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
/**
* A simple cmp2 entity bean remote interface
* @author Scott.Stark@jboss.org
* @version $Revision: 1.1.32.1 $
*/
public interface CtsCmp
extends EJBObject
{
public void setPersonsName (String personsName)
throws RemoteException;
public String getPersonsName ()
throws RemoteException;
public void setPersonsAge(int age)
throws RemoteException;
public int getPersonsAge()
throws RemoteException;
}
| CtsCmp.java |