/* * * Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ package customer; import javax.ejb.CreateException; import javax.ejb.EJBLocalHome; import javax.ejb.FinderException; public interface LocalAddressHome extends EJBLocalHome { public LocalAddress create ( String customerID, String addressID, String street, String city, String zip, String state) throws CreateException; public LocalAddress findByPrimaryKey(String addressID) throws FinderException; }