⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orderlocalhome.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;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -