KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > core > storage > Storage


1 package net.javacoding.jspider.core.storage;
2
3
4 import net.javacoding.jspider.api.model.Summary;
5
6
7 /**
8  *
9  * $Id: Storage.java,v 1.17 2003/04/11 16:37:05 vanrogu Exp $
10  *
11  * @author Günther Van Roey
12  */

13 public interface Storage {
14
15     public SiteDAO getSiteDAO ( );
16     public ResourceDAO getResourceDAO ( );
17     public DecisionDAO getDecisionDAO ( );
18     public CookieDAO getCookieDAO ( );
19     public EMailAddressDAO getEMailAddressDAO ( );
20     public Summary getSummary ( );
21
22 }
23
Popular Tags