1 25 26 package org.objectweb.jonas.jtests.beans.bank; 27 28 import java.rmi.RemoteException ; 29 import javax.ejb.RemoveException ; 30 import javax.ejb.EJBObject ; 31 32 36 public interface Manager extends EJBObject { 37 38 42 public void createAll(int nb) throws RemoteException ; 43 44 47 public void reinitAll() throws RemoteException ; 48 49 53 public void delAccount(int d1) throws RemoteException , RemoveException ; 54 55 59 public boolean checkAll() throws RemoteException ; 60 61 66 public boolean checkAccount(int a) throws RemoteException ; 67 68 73 public int readBalance(int a) throws RemoteException ; 74 75 79 public int readBalance() throws RemoteException ; 80 81 86 public int readBalanceTx(int a) throws RemoteException ; 87 88 95 public void move(int d, int c, int v, int delay) throws RemoteException ; 96 } 97 | Popular Tags |