/** * @brief Verify that an auction entry exists. * <p>This should query the filter manager instead of doing it itself. This would let * FilterManager handle all this, and AuctionsManager wouldn't need to know anything too much * about the items in the auction lists. * @note Both Verify and Get should proxy to FilterManager! FUTURE FEATURE -- mrs: * 29-September-2001 14:59 * @param id - The auction id to search for. * @return - True if the item exists someplace in our list of Auctions. */ public boolean verifyEntry(String id) { return AuctionEntry.findByIdentifier(id) != null; }
@Override public AuctionEntry getItem(String param) { return AuctionEntry.findByIdentifier(param); }