home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 July / Chip_1998-07_cd.bin / zkuste / JBuilder / BDK / Win / bdk_sep97.exe / _SETUP.1 / QuoteServer.java < prev    next >
Encoding:
Java Source  |  1997-09-10  |  573 b   |  23 lines

  1.  
  2. package sunw.demo.quote;
  3.  
  4. import java.rmi.Remote;
  5. import java.rmi.RemoteException;
  6.  
  7.  
  8. /** 
  9.  * This is the java.rmi.Remote interface that QuoteServers must implement,
  10.  * it's the interface seen by remote clients the QuoteMonitor bean.
  11.  *
  12.  * @see sunw.demo.quote.QuoteServerImpl
  13.  */
  14.  
  15. public interface QuoteServer extends Remote 
  16. {
  17.   void addQuoteListener(QuoteListener x) throws RemoteException;
  18.   void removeQuoteListener(QuoteListener x) throws RemoteException;
  19.  
  20.   HttpProxy getHttpProxy() throws RemoteException;
  21.   void setHttpProxy(HttpProxy x) throws RemoteException;
  22. }
  23.