1 25 26 package org.objectweb.jonas.stests.manac; 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 public void createAll(int nb) throws RemoteException ; 38 public void reinitAll() throws RemoteException ; public void setDelay(int delay) throws RemoteException ; public void setValue(int v) throws RemoteException ; public void setAccounts(int d1, int d2, int c1, int c2) throws RemoteException ; public void getAccount(int c1) throws RemoteException ; public void delAccount(int d1) throws RemoteException , RemoveException ; public void movement() throws RemoteException ; public boolean checkAll() throws RemoteException ; 46 public boolean checkAccount(int a) throws RemoteException ; public int readBalances() throws RemoteException ; public void withdraw(int d, int c, int v) throws RemoteException ; } 50 | Popular Tags |