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