/** * Copyright (c) 2007 Samsung Electronics. All Rights Reserved. * Project: Samsung.com Site Renewal(2007.01~07) */ package com.sec.dotcom.p2.control.dock.dao; import java.sql.SQLException; import java.util.List; import com.sec.dotcom.p2.control.dock.to.IAInformationTO; import com.sec.dotcom.p2.control.dock.to.ProductModelTO; import com.sec.dotcomfw.dao.AbDAO; /** * Class Name : DockAction.java * Description : * * Modification Information * * Mod Date Modifier Description * ----------- -------- --------------------------- * 2009. 8. 4. 인정진 최초생성 * * @author ��d�� * @since 2009. 8. 4. * @version 1.0 */ public class ProductDockDAO extends AbDAO { /** * Low Bandwidth Product Dock List * @param prd_ia_url_name_path * @param model_cd * @return List * @throws SQLException */ @SuppressWarnings("unchecked") public List productDockItemList (IAInformationTO to) throws SQLException { List list = sqlMapClient.queryForList("productdock.productDockItemList", to); return list; } /** * Low Bandwidth Product Dock Recommand List * @param prd_ia_url_name_path * @param model_cd * @return List * @throws SQLException */ @SuppressWarnings("unchecked") public List productRecommandItemList (IAInformationTO to) throws SQLException { List list = sqlMapClient.queryForList("productdock.detailRecommandItemList", to); return list; } }