1 22 package org.jboss.test.bankiiop.interfaces; 23 24 import java.rmi.*; 25 import javax.ejb.*; 26 27 33 public interface Account 34 extends EJBObject 35 { 36 38 40 42 44 public void deposit(float amount) 46 throws RemoteException; 47 48 public void withdraw(float amount) 49 throws RemoteException; 50 51 public float getBalance() 52 throws RemoteException; 53 54 public Customer getOwner() 55 throws RemoteException; 56 57 public void setData(AccountData data) 58 throws RemoteException; 59 60 public AccountData getData() 61 throws RemoteException; 62 } 63 64 84 | Popular Tags |