import java.util.Vector; public interface KontoI extends java.rmi.Remote { public void overførsel(int kroner) throws java.rmi.RemoteException; public int saldo() throws java.rmi.RemoteException; public Vector bevægelser() throws java.rmi.RemoteException; }