KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > core > storage > spi > StorageSPI


1 package net.javacoding.jspider.core.storage.spi;
2
3 import net.javacoding.jspider.api.model.Summary;
4
5 /**
6  * $Id: StorageSPI.java,v 1.1 2003/04/11 16:37:08 vanrogu Exp $
7  * @todo add id-references as much as possible
8  */

9 public interface StorageSPI {
10
11     public SiteDAOSPI getSiteDAO ( );
12     public ResourceDAOSPI getResourceDAO ( );
13     public ContentDAOSPI getContentDAO ( );
14     public DecisionDAOSPI getDecisionDAO ( );
15     public CookieDAOSPI getCookieDAO ( );
16     public EMailAddressDAOSPI getEMailAddressDAO ( );
17     public FolderDAOSPI getFolderDAO ( );
18
19 }
20
Popular Tags