View Javadoc

1   /*** 
2    * JFoxSOAF, Service-Oriented Application Framework
3    * 
4    * Copyright (C) www.huihoo.org
5    *
6    * Distributable under GNU LGPL
7    * 
8    * For more information, please visit: http://www.huihoo.org/jfox/jfoxsoaf
9    */
10  
11  package org.huihoo.jfox.soaf.services.persistence;
12  
13  import com.ibatis.dao.client.DaoManager;
14  
15  /***
16   * <p>
17   * Ibatis persistence service wrapper.
18   * </p>
19   * 
20   * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
21   * @version $Revision: 1.2 $ $Date: 2004/11/16 07:58:03 $
22   * @version Revision: 1.0
23   */
24  
25  
26  public interface IbatisService {
27  
28      public DaoManager getDaoManager();
29  
30  }