* <BAEL-1209>[Harihar] Code for RMI java. http://jira.baeldung.com/browse/BAEL-1209 * <BAEL-1209>[Harihar] Use specific exception declaration
9 lines
176 B
Java
9 lines
176 B
Java
package org.baeldung;
|
|
|
|
import java.rmi.Remote;
|
|
import java.rmi.RemoteException;
|
|
|
|
public interface RandomNumberGenerator extends Remote{
|
|
int get() throws RemoteException;
|
|
}
|