1 package example.cmp.create; 2 3 import javax.ejb.*; 4 5 import java.util.Collection; 6 7 23 public interface CourseHome extends EJBLocalHome { 24 32 Course findByPrimaryKey(String courseId) 33 throws FinderException; 34 35 38 Collection findAll() 39 throws FinderException; 40 41 51 public Course create(String courseId, String instructor) 52 throws CreateException; 53 } 54 | Popular Tags |