1 package edu.rice.rubis.beans; 2 3 import javax.ejb.*; 4 import java.rmi.*; 5 import java.util.Vector ; 6 7 12 public interface QueryLocal extends EJBLocalObject { 13 29 public Vector getCurrentItemsInCategory(Integer categoryId, int startingRow, int nbOfRows); 30 31 46 public Vector getCurrentItemsInCategoryAndRegion(Integer categoryId, Integer regionId, int startingRow, int nbOfRows); 47 48 56 public float getItemMaxBid(Integer itemId); 57 58 68 public Vector getItemQtyMaxBid(int maxToCollect, Integer itemId); 69 70 78 public int getItemNbOfBids(Integer itemId); 79 80 89 public Vector getItemBidHistory(Integer itemId); 90 91 99 public Vector getUserBids(Integer userId); 100 101 109 public Vector getUserWonItems(Integer userId); 110 111 112 113 114 115 } 116 | Popular Tags |