KickJava   Java API By Example, From Geeks To Geeks.

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


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 Grade bean.
10  */

11 public interface GradeHome extends EJBLocalHome {
12   /**
13    * Returns the <code>Grade</code> entity that matches the key.
14    */

15   public Grade findByPrimaryKey(GradeKey gradeKey)
16     throws FinderException;
17 }
18
Popular Tags