/*
 * Generated by XDoclet - Do not edit!
 */
package com.dragonsoft.tryapp.ejb.entity.interfaces;

/**
 * Home interface for Course.
 * @author Shaun Newsum The CourseBean handles calls to create/update/delete and query for courses from within the database. The bean can be used to represent a single entity or used as a utility object to query for collections of courses
 */
public interface CourseHome
   extends com.dragonsoft.tryapp.ejb.entity.interfaces.ConnectionHome
{
   public static final String COMP_NAME="java:comp/env/ejb/Course";
   public static final String JNDI_NAME="ejb/Course";

   public com.dragonsoft.tryapp.ejb.entity.interfaces.Course create(com.dragonsoft.tryapp.common.CourseObj course)
      throws javax.ejb.CreateException,java.rmi.RemoteException;

   public com.dragonsoft.tryapp.ejb.entity.interfaces.Course findByPrimaryKey(com.dragonsoft.tryapp.ejb.entity.interfaces.CoursePK courseID)
      throws javax.ejb.FinderException,java.rmi.RemoteException;

}
