1 /*2 * JFox - The most lightweight Java EE Application Server!3 * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.4 *5 * JFox is licenced and re-distributable under GNU LGPL.6 */7 package org.jfox.petstore.bo;8 9 import java.util.List ;10 11 import org.jfox.petstore.entity.Category;12 13 /**14 * @author <a HREF="mailto:jfox.young@gmail.com">Young Yang</a>15 */16 17 public interface CategoryBO {18 19 Category getCategory(String categoryId);20 21 List <Category> getCategoryList();22 }23