| SimpleEntity.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.bench.interfaces;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
public interface SimpleEntity extends EJBObject {
public int getField() throws RemoteException;
public void setField(int field) throws RemoteException;
}
| SimpleEntity.java |