1 4 package test.interfaces; 5 6 13 public interface Teller 14 extends javax.ejb.EJBObject  15 { 16 19 public void transfer( test.interfaces.Account from,test.interfaces.Account to,float amount ) 20 throws java.rmi.RemoteException ; 21 22 25 public void deposit( test.interfaces.Account account,float amount ) 26 throws java.rmi.RemoteException ; 27 28 } 29 | Popular Tags |