FileDocCategorySizeDatePackage
HibernateProductDao.javaAPI DocExample878Fri Mar 26 21:39:22 GMT 2004org.springframework.samples.jpetstore.dao.hibernate

HibernateProductDao.java

package org.springframework.samples.jpetstore.dao.hibernate;

import org.springframework.samples.jpetstore.dao.ProductDao;
import org.springframework.samples.jpetstore.domain.Product;
import org.springframework.dao.DataAccessException;

import net.sf.hibernate.cfg.*;

import java.util.List;

/**
 * Created by IntelliJ IDEA.
 * User: Administrator
 * Date: Mar 26, 2004
 * Time: 4:03:50 PM
 * To change this template use Options | File Templates.
 */
public class HibernateProductDao implements ProductDao {



    public List getProductListByCategory(String categoryId) throws DataAccessException {
        return null;
    }

    public List searchProductList(String keywords) throws DataAccessException {
        return null;
    }

    public Product getProduct(String productId) throws DataAccessException {
        return null;
    }

}