
public interface QuotePushServer extends java.rmi.Remote {
  StockQuote[] getQuote() throws java.rmi.RemoteException;
  void watch(QuoteClient client, String[] list) throws java.rmi.RemoteException;
}
