Entity.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.web.interfaces; public interface Entity extends javax.ejb.EJBObject { int read() throws java.rmi.RemoteException; void write(int value) throws java.rmi.RemoteException; }
Entity.java |