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

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.storage;
  2. import net.javacoding.jspider.api.model.Summary;
  3. /**
  4.  *
  5.  * $Id: Storage.java,v 1.17 2003/04/11 16:37:05 vanrogu Exp $
  6.  *
  7.  * @author G黱ther Van Roey
  8.  */
  9. public interface Storage {
  10.     public SiteDAO getSiteDAO ( );
  11.     public ResourceDAO getResourceDAO ( );
  12.     public DecisionDAO getDecisionDAO ( );
  13.     public CookieDAO getCookieDAO ( );
  14.     public EMailAddressDAO getEMailAddressDAO ( );
  15.     public Summary getSummary ( );
  16. }