Source code: com/fetish/directory/FadaInterface.java
1 package com.fetish.directory;
2
3 import java.rmi.*;
4 import net.jini.core.lease.*;
5 import net.jini.lease.*;
6 import net.jini.core.lookup.*;
7 import net.jini.lookup.*;
8
9 /**
10 * Extra interface for FADA only functionality.
11 * <br>
12 * These methods do not belong to the standard Fetish Directory and LUSManager
13 * interfaces, and should not be used by any partner outside the FADA team.
14 */
15
16 public interface FadaInterface extends Remote {
17 public void setLease( Lease l ) throws RemoteException;
18 public void setServiceID( ServiceID s ) throws RemoteException;
19 public void setRegistrar( String r ) throws RemoteException;
20 }