1 /*2 * JFox - The most lightweight Java EE Application Server!3 * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.4 *5 * JFox is licenced and re-distributable under GNU LGPL.6 */7 package org.jfox.petstore.dao;8 9 import java.sql.SQLException ;10 import java.util.List ;11 12 import org.jfox.petstore.entity.Product;13 14 public interface ProductDAO {15 16 List <Product> getProductListByCategory(String categoryId) throws SQLException ;17 18 List <Product> searchProductList(String [] keywords) throws SQLException ;19 20 Product getProduct(String productId) throws SQLException ;21 22 }23