Advertisement
Guest User

ClientInterface.java

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