/**
* The remote interface for client lock holders.
*/
package imaginary.persist;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface RemoteLockHolder extends Remote {
public abstract void monitorLock(RemotePersistent p)
throws RemoteException;
public abstract void setLock(RemoteLock lock) throws RemoteException;
}
|