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