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  
13  import com.ibatis.dao.client.DaoManager;
14  import com.ibatis.dao.client.template.SqlMapDaoTemplate;
15  
16  /***
17   * JUnit test case for the IbatisServiceImpl
18   * {@link org.huihoo.jfox.soaf.services.persistence.BaseSqlMapDao).
19   * 
20   * @author <a href="clinton.begin@ibatis.com">Clinton Begin</a>
21   * @author <a href="mailto:founder_chen@yahoo.com">Peter Cheng </a>
22   * @version $Revision: 1.1 $ $Date: 2004/11/16 07:58:33 $
23   * @version Revision: 1.0
24   */
25  
26  public class BaseSqlMapDao extends SqlMapDaoTemplate {
27  
28      protected static final int PAGE_SIZE = 4;
29  
30      public BaseSqlMapDao(DaoManager daoManager) {
31          super(daoManager);
32      }
33  
34  }