1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 6 11 public interface Bid extends EJBObject { 12 18 public Integer getId() throws RemoteException; 19 20 26 public Integer getUserId() throws RemoteException; 27 28 34 public Integer getItemId() throws RemoteException; 35 36 42 public int getQuantity() throws RemoteException; 43 44 50 public float getBid() throws RemoteException; 51 52 58 public float getMaxBid() throws RemoteException; 59 60 66 public String getDate() throws RemoteException; 67 68 74 public String getBidderNickName() throws RemoteException; 75 76 77 84 public void setUserId(Integer id) throws RemoteException; 85 86 93 public void setItemId(Integer id) throws RemoteException; 94 95 101 public void setQuantity(int Qty) throws RemoteException; 102 103 109 public void setBid(float newBid) throws RemoteException; 110 111 117 public void setMaxBid(float newBid) throws RemoteException; 118 119 125 public void setDate(String newDate) throws RemoteException; 126 127 134 public String printBidHistory() throws RemoteException; 135 } 136 | Popular Tags |