blob: d866f9d65a4fe8e7ebcb89cd1ed27e53a5cc1597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package examples.jndi;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* The remote interface for the remote object. Clients use it
* for all operations on the remote object.
*/
public interface PrimaryKeyGenerator extends Remote {
public long generate() throws RemoteException;
}
|