1   /***
2    * JFoxSOAF, Service-Oriented Application Framework
3    * 
4    * Copyright (C) www.huihoo.org
5    * 
6    * Distributable under GNU LGPL For more information, please visit:
7    * http://www.huihoo.org/jfox/jfoxsoaf
8    */
9   
10  package org.huihoo.jfox.soaf.services.persistence;
11  
12  import java.util.List;
13  
14  /***
15   * JUnit test case model for IbatisServiceImpl
16   * 
17   * {@link org.huihoo.jfox.soaf.services.persistence.CategoryDao).
18   * 
19   * @author <a href="clinton.begin@ibatis.com">Clinton Begin</a>
20   * @author <a href="mailto:founder_chen@yahoo.com">Peter Cheng </a>
21   * @version $Revision: 1.1 $ $Date: 2004/11/16 07:58:53 $
22   * @version Revision: 1.0
23   */
24  
25  public interface CategoryDao {
26  
27      public List getCategoryList();
28  
29      public Category getCategory(String categoryId);
30  
31  }