OrderLocalHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package day21ex.order;
- import javax.ejb.*;
- import java.util.*;
- import day21ex.student.*;
- public interface OrderLocalHome extends EJBLocalHome {
- public OrderLocal create(String orderID, StudentLocal student, Collection courseItems) throws CreateException;
- public OrderLocal create(String orderID, String studentId, Collection courseItems) throws CreateException;
- public OrderLocal create(String orderID, String studentid, String status, double amount) throws CreateException;
- public OrderLocal create(String orderID, StudentLocal student,String status, double amount) throws CreateException;
- public OrderLocal findByPrimaryKey(String key) throws FinderException;
- public Collection findByStudent(StudentLocal student) throws FinderException;
- public Collection findByDate(java.sql.Timestamp date) throws FinderException;
- public Collection findByStatus(String status) throws FinderException;
- public Collection findAllOrders() throws FinderException;
- }