import java.rmi.*;
import java.rmi.server.*;
import java.net.*;

public class RemoteImp extends UnicastRemoteObject implements RemoteInt {
   public RemoteImp(String naam, int a) throws RemoteException, MalformedURLException {
      Naming.rebind("rmi://localhost/"+naam, this);
      nr=a;
   }
   public int haalnr() throws RemoteException {
      return nr;
   }
   private int nr;
}
