1 25 26 package org.objectweb.jonas.jtests.beans.beanexc; 27 28 import java.rmi.RemoteException ; 29 30 public interface AccountE extends AccountS { 31 public int getNumber() throws RemoteException ; 32 public long getBalance() throws RemoteException ; 33 public void setBalance(long d) throws RemoteException ; 34 public String getCustomer() throws RemoteException ; 35 public void setCustomer(String c) throws RemoteException ; 36 public void doFailedEjbStore_1() throws RemoteException ; 37 public void doFailedEjbStore_2() throws RemoteException ; 38 public void doFailedEjbStore_3() throws RemoteException ; 39 } 40 | Popular Tags |