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

/**
 * 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 StudentHome
   extends com.dragonsoft.tryapp.ejb.entity.interfaces.ConnectionHome
{
   public static final String COMP_NAME="java:comp/env/ejb/Student";
   public static final String JNDI_NAME="ejb/Student";

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

   public com.dragonsoft.tryapp.ejb.entity.interfaces.Student findByPrimaryKey(com.dragonsoft.tryapp.ejb.entity.interfaces.UserRolePK key)
      throws javax.ejb.FinderException,java.rmi.RemoteException;

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

}
