01: /*
02: * Created on 2005-12-19
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.huihoo.jfox.soaf.samples.struts.dao;
08:
09: import java.util.Collection;
10:
11: import org.huihoo.jfox.soaf.samples.struts.model.Cheese;
12:
13: /**
14: * @author peter
15: *
16: * TODO To change the template for this generated type comment go to Window -
17: * Preferences - Java - Code Style - Code Templates
18: */
19: public interface CheeseDao {
20:
21: public void save(Cheese cheese);
22:
23: public void remove(Cheese cheese);
24:
25: public Cheese get(String name);
26:
27: public Collection all();
28:
29: }
|