1 package org.springframework.samples.jpetstore.dao;2 3 import java.util.List ;4 5 import org.springframework.dao.DataAccessException;6 import org.springframework.samples.jpetstore.domain.Category;7 8 public interface CategoryDao {9 10 List getCategoryList() throws DataAccessException;11 12 Category getCategory(String categoryId) throws DataAccessException;13 14 }15