1 // $Header: /cvsroot/daoexamples/daoexamples/src/java/daoexamples/movie/Movie.java,v 1.2 2003/08/12 04:41:01 sullis Exp $
2
3 /*
4 *
5 *
6 *
7 *
8 */
9
10 package daoexamples.movie;
11
12 /***
13 *
14 * @author Sean C. Sullivan
15 *
16 */
17 // Note: this class does not implement java.io.Serializable,
18 // You might implement Serializable if you were planning
19 // to pass instances of this class to an EJB
20 public interface Movie
21 {
22 public String getTitle();
23 public String getRating();
24 public String getReleaseYear();
25 public String getId();
26 }
This page was automatically generated by Maven