01: // Person.java
02:
03: package org.objectweb.jonas.jtests.beans.ebasic;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * Person remote interface
10: */
11: public interface Person extends EJBObject {
12: public int getNumberPrimitive() throws RemoteException;
13:
14: public java.lang.String getName() throws RemoteException;
15: }
|