KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > example > cmp > map > CourseHome


1 package example.cmp.map;
2
3 import java.rmi.*;
4 import javax.ejb.*;
5
6 import java.util.*;
7
8 /**
9  * Home interface for the Course bean.
10  */

11 public interface CourseHome extends EJBLocalHome {
12   /**
13    * returns the <code>Course</code> entity that has <code>name</code>
14    * as its primary key.
15    */

16   public Course findByPrimaryKey(String name)
17     throws FinderException;
18 }
19
Popular Tags