orderlocalhome.java
来自「100多M的J2EE培训内容」· Java 代码 · 共 17 行
JAVA
17 行
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 + =
减小字号Ctrl + -
显示快捷键?