/**
   * Get the list of the available auction items
   *
   * @return a collection of AuctionItem
   * @throws RemoteException on RMI error
   */
  public Collection<AuctionItemInfo> getAuctionItems() throws RemoteException {

    logger.debug("Query Auction items");

    return auctions.getCachedAuctionItemInfo();
  }