Advertisement
Guest User

ServerInterface.java

a guest
Nov 11th, 2014
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package com.rmicallback.server;
  2.  
  3. import com.rmicallback.client.ClientInterface;
  4. import java.rmi.Remote;
  5. import java.rmi.RemoteException;
  6.  
  7. public interface ServerInterface extends Remote{
  8.     public int setClientInterface(ClientInterface cli) throws RemoteException;
  9.     public void action(int value) throws RemoteException;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement