/* * * 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.EJBLocalObject; public interface LocalAddress extends EJBLocalObject{ public String getAddressID(); public String getStreet(); public String getCity(); public String getZip(); public String getState(); }