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

/**
 * Local home interface for Student.
 * @author Shaun Newsum The StudentBean handles calls to create/update/delete and query for students 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 students
 */
public interface StudentLocalHome
   extends com.dragonsoft.tryapp.ejb.entity.interfaces.ConnectionLocalHome
{
   public static final String COMP_NAME="java:comp/env/ejb/StudentLocal";
   public static final String JNDI_NAME="StudentLocal";

   public com.dragonsoft.tryapp.ejb.entity.interfaces.StudentLocal create(java.lang.String username , java.lang.String courseID)
      throws javax.ejb.CreateException;

   public com.dragonsoft.tryapp.ejb.entity.interfaces.StudentLocal findByPrimaryKey(com.dragonsoft.tryapp.ejb.entity.interfaces.UserRolePK key)
      throws javax.ejb.FinderException;

   public java.util.Collection findAllByCourseID(java.lang.String courseID)
      throws javax.ejb.FinderException;

}
