/**
  * Returns a shopping cart promotion with the given name.
  *
  * @param promotionName the promotion name
  * @return rule with the given name.
  */
 public Rule findShoppingCartPromotionByName(final String promotionName) {
   return ruleService.findByName(promotionName);
 }