使您的应用程序调用我的应用程序,第 1 部分: Apache Geronimo 通信基础 —— 开发、部署和测试(上)
2010-03-19 00:00:00 来源:WEB开发网public interface RemotePurchaseOrder
extends EJBObject, Remote {
public String getPurchaseOrderNum()
throws RemoteException;
public void setPurchaseOrderNum(String purchaseOrderNum)
throws RemoteException;
public String getItem()
throws RemoteException;
public void setItem(String item)
throws RemoteException;
public String getDescription()
throws RemoteException;
public void setDescription(String description)
throws RemoteException;
public Integer getUnitPrice()
throws RemoteException;
public void setUnitPrice(Integer unitPrice)
throws RemoteException;
public Integer getQuantity()
throws RemoteException;
public void setQuantity(Integer quantity)
throws RemoteException;
public String getRequestorEmail()
throws RemoteException;
public void setRequestorEmail(String requestorEmail)
throws RemoteException;
}
更多精彩
赞助商链接