Advertisement
charleston10

Interface Servidor

May 28th, 2013
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement