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

/**
 * Home interface for Assignment.
 * @author Shaun Newsum The AssignmentBean handles calls to create/update/delete and query for assignments 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 assignments
 */
public interface AssignmentHome
   extends com.dragonsoft.tryapp.ejb.entity.interfaces.ConnectionHome
{
   public static final String COMP_NAME="java:comp/env/ejb/Assignment";
   public static final String JNDI_NAME="ejb/Assignment";

   public com.dragonsoft.tryapp.ejb.entity.interfaces.Assignment create(com.dragonsoft.tryapp.common.AssignmentObj assignment)
      throws javax.ejb.CreateException,java.rmi.RemoteException;

   public com.dragonsoft.tryapp.ejb.entity.interfaces.Assignment findByPrimaryKey(com.dragonsoft.tryapp.ejb.entity.interfaces.AssignmentPK assignmentID)
      throws javax.ejb.FinderException,java.rmi.RemoteException;

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

}
