FileDocCategorySizeDatePackage
CategoryDao.javaAPI DocExample363Sat Dec 27 17:30:54 GMT 2003org.springframework.samples.jpetstore.dao

CategoryDao.java

package org.springframework.samples.jpetstore.dao;

import java.util.List;

import org.springframework.dao.DataAccessException;
import org.springframework.samples.jpetstore.domain.Category;

public interface CategoryDao {

	List getCategoryList() throws DataAccessException;

  Category getCategory(String categoryId) throws DataAccessException;

}