1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 6 11 public interface BidLocal extends EJBLocalObject { 12 17 public Integer getId(); 18 19 24 public Integer getUserId(); 25 26 31 public Integer getItemId(); 32 33 38 public int getQuantity(); 39 40 45 public float getBid(); 46 47 52 public float getMaxBid(); 53 54 59 public String getDate(); 60 61 66 public String getBidderNickName(); 67 68 69 75 public void setUserId(Integer id); 76 77 83 public void setItemId(Integer id); 84 85 90 public void setQuantity(int Qty); 91 92 97 public void setBid(float newBid); 98 99 104 public void setMaxBid(float newBid); 105 106 111 public void setDate(String newDate); 112 113 119 public String printBidHistory(); 120 } 121 | Popular Tags |