private ShippingServiceLevel getShippingServiceLevelMatchingGuid(
     final List<ShippingServiceLevel> shippingServiceLevels,
     final String shippingServiceLevelGuid) {
   for (ShippingServiceLevel currentShippingServiceLevel : shippingServiceLevels) {
     String currentShippingServiceLevelGuid = currentShippingServiceLevel.getGuid();
     if (currentShippingServiceLevelGuid.equals(shippingServiceLevelGuid)) {
       return currentShippingServiceLevel;
     }
   }
   return null;
 }