/* * * Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ import java.rmi.RemoteException; import javax.ejb.*; public interface StockHome extends EJBHome { public Stock create(String id, int quantityOnHand, int reorderLevel) throws RemoteException, CreateException; public Stock findByPrimaryKey(String id) throws FinderException, RemoteException; }