FileDocCategorySizeDatePackage
SqlMapCategoryDao.javaAPI DocExample746Sat Dec 27 17:31:42 GMT 2003org.springframework.samples.jpetstore.dao.ibatis

SqlMapCategoryDao

public class SqlMapCategoryDao extends org.springframework.orm.ibatis.support.SqlMapDaoSupport implements org.springframework.samples.jpetstore.dao.CategoryDao

Fields Summary
Constructors Summary
Methods Summary
public org.springframework.samples.jpetstore.domain.CategorygetCategory(java.lang.String categoryId)

    return (Category) getSqlMapTemplate().executeQueryForObject("getCategory", categoryId);
  
public java.util.ListgetCategoryList()

    return getSqlMapTemplate().executeQueryForList("getCategoryList", null);