1 package org.springframework.samples.jpetstore.dao;2 3 import java.util.List ;4 5 import org.springframework.dao.DataAccessException;6 import org.springframework.samples.jpetstore.domain.Product;7 8 public interface ProductDao {9 10 List getProductListByCategory(String categoryId) throws DataAccessException;11 12 List searchProductList(String keywords) throws DataAccessException;13 14 Product getProduct(String productId) throws DataAccessException;15 16 }17