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

📄 order.java

📁 一个优秀的供应商管理系统
💻 JAVA
字号:
package apusic.myshop.order.ejb;import java.rmi.RemoteException;import javax.ejb.EJBObject;import java.util.Collection;import apusic.myshop.order.model.OrderModel;import apusic.myshop.customer.ejb.Customer;import apusic.myshop.util.CreditCard;public interface Order extends EJBObject {    // different status of any order.    public static final String PENDING = "P";    public static final String COMPLETED = "C";    public OrderModel getDetails() throws RemoteException;    // return the Customer entity bean for the user who placed this order.    public Customer getCustomer() throws RemoteException;    public void setUserId(String userId) throws RemoteException;    public void setOrderDate(java.sql.Date orderDate) throws RemoteException;    public void setShipName(String shipName) throws RemoteException;    public void setShipAddr(String shipAddr) throws RemoteException;    public void setShipProvince(String shipProvince) throws RemoteException;    public void setShipCity(String shipCity) throws RemoteException;    public void setShipZip(String shipZip) throws RemoteException;    public void setShipCountry(String shipCountry) throws RemoteException;    public void setBillName(String billName) throws RemoteException;    public void setBillAddr(String billAddr) throws RemoteException;    public void setBillProvince(String billProvince) throws RemoteException;    public void setBillCity(String billCity) throws RemoteException;    public void setBillZip(String billZip) throws RemoteException;    public void setBillCountry(String billCountry) throws RemoteException;    public void setChargeCard(CreditCard chargeCard) throws RemoteException;    public void setLineItems(Collection lineItems) throws RemoteException;    public void setTotalPrice(double totalPrice) throws RemoteException;}

⌨️ 快捷键说明

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