KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > discRack > spec > DiscGenerator


1 /*
2  * discRack
3  *
4  * Enhydra super-servlet specification object
5  *
6  */

7
8 package discRack.spec;
9
10
11
12 public interface DiscGenerator {
13     
14 public Disc[] findDiscsForPerson(Person user)throws DiscRackException;
15 public Disc findDiscByID(String JavaDoc id) throws DiscRackException;
16
17 }
Popular Tags