1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 6 11 public interface BuyNow extends EJBObject { 12 18 public Integer getId() throws RemoteException; 19 20 26 public Integer getBuyerId() throws RemoteException; 27 28 34 public Integer getItemId() throws RemoteException; 35 36 42 public int getQuantity() throws RemoteException; 43 44 50 public String getDate() throws RemoteException; 51 52 59 public void setBuyerId(Integer id) throws RemoteException; 60 61 68 public void setItemId(Integer id) throws RemoteException; 69 70 76 public void setQuantity(int Qty) throws RemoteException; 77 78 84 public void setDate(String newDate) throws RemoteException; 85 } 86 | Popular Tags |