OrderLocalHome.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package day21ex.order;
  2. import javax.ejb.*;
  3. import java.util.*;
  4. import day21ex.student.*;
  5. public interface OrderLocalHome extends EJBLocalHome {
  6.    public OrderLocal create(String orderID, StudentLocal student, Collection courseItems) throws CreateException;
  7.    public OrderLocal create(String orderID, String studentId, Collection courseItems) throws CreateException;
  8.    public OrderLocal create(String orderID, String studentid, String status, double amount) throws CreateException;
  9.    public OrderLocal create(String orderID, StudentLocal student,String status, double amount) throws CreateException;
  10.    public OrderLocal findByPrimaryKey(String key) throws FinderException;
  11.    public Collection findByStudent(StudentLocal student) throws FinderException;
  12.    public Collection findByDate(java.sql.Timestamp date) throws FinderException;
  13.    public Collection findByStatus(String status) throws FinderException;
  14.    public Collection findAllOrders() throws FinderException;
  15. }