@RequestMapping(
     value = "/primaryContainer/{beverageCategoryCode}/{brandCode}",
     method = RequestMethod.POST)
 public @ResponseBody List<PrimaryContainer> getPrimaryContainer(
     @PathVariable(value = "beverageCategoryCode") String beverageCategoryCode,
     @PathVariable(value = "brandCode") String brandCode) {
   return repository.getPrimaryContainers(beverageCategoryCode, brandCode);
 }