package examples.ejb.extensions.readMostly; import java.rmi.RemoteException; import javax.ejb.EJBHome; import javax.ejb.FinderException; /** * @author Copyright (c) 1999-2000 by BEA Systems, Inc. All Rights Reserved. */ public interface StockHome extends EJBHome { Stock findByPrimaryKey(String symbol) throws FinderException, RemoteException; }