document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. import java.rmi.Remote;
  3. import java.rmi.RemoteException;
  4.  
  5. public interface interfaceServidor extends Remote{
  6.  
  7.     void conectar() throws RemoteException;
  8.     void desconectar() throws RemoteException; 
  9.  
  10. }
');