/**
  * Returns the price of the product with the given product ID.
  *
  * @param productId the product ID
  * @return the product's price
  */
 @Transactional(readOnly = true)
 public double getPrice(String productId) {
   Product product = storeDAO.getProduct(productId);
   return product.getPrice();
 }