StorageSPI.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:1k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.storage.spi;
  2. import net.javacoding.jspider.api.model.Summary;
  3. /**
  4.  * $Id: StorageSPI.java,v 1.1 2003/04/11 16:37:08 vanrogu Exp $
  5.  * @todo add id-references as much as possible
  6.  */
  7. public interface StorageSPI {
  8.     public SiteDAOSPI getSiteDAO ( );
  9.     public ResourceDAOSPI getResourceDAO ( );
  10.     public ContentDAOSPI getContentDAO ( );
  11.     public DecisionDAOSPI getDecisionDAO ( );
  12.     public CookieDAOSPI getCookieDAO ( );
  13.     public EMailAddressDAOSPI getEMailAddressDAO ( );
  14.     public FolderDAOSPI getFolderDAO ( );
  15. }