@RequestMapping(
     value = "/shortSecondaryPackage/{brandCode}/{productCode}/{primaryContainerShortCode}",
     method = RequestMethod.POST)
 public @ResponseBody List<BaseDictionaryItem> getPackageSizes(
     @PathVariable(value = "brandCode") String brandCode,
     @PathVariable(value = "productCode") String productCode,
     @PathVariable(value = "primaryContainerShortCode") String primaryContainerShortCode) {
   primaryContainerShortCode = primaryContainerShortCode.replace("strange", ".");
   brandCode = brandCode.replace("strange", ".");
   return repository.getShortSecondaryPackages(brandCode, productCode, primaryContainerShortCode);
 }