1 25 26 package lb; 27 28 import java.rmi.RemoteException; 29 30 import javax.ejb.EJBObject; 31 32 36 public interface Manager extends EJBObject { 37 38 void createAll(int nb) throws RemoteException; 39 40 void setAccounts(int d1, int c1) throws RemoteException; 41 42 void setValue(int v) throws RemoteException; 43 44 void movement() throws RemoteException; 45 46 boolean checkAll() throws RemoteException; 47 48 boolean checkAccount(int a) throws RemoteException; 49 } | Popular Tags |