1 // Account.java2 3 package org.objectweb.jonas.jtests.beans.ebasic;4 5 import java.rmi.RemoteException ;6 import javax.ejb.EJBObject ;7 8 /**9 * Account remote interface10 */11 public interface Account extends EJBObject {12 public int getNumberPrimitive() throws RemoteException ;13 public java.lang.String getCustomer() throws RemoteException ;14 public void setCustomer(java.lang.String s) throws RemoteException ;15 }16