> @@ -166,4 +150,22 @@ private void checkVirtualGuest(VirtualGuest vg) {
>        assert vg.getPrimaryIpAddress() != null : vg;
>     }
>  
> +   private Iterable<ProductItemPrice> getPrices(Template template, 
> ProductPackage productPackage) {
> +      Builder<ProductItemPrice> result = ImmutableSet.builder();
> +
> +      int imageId = Integer.parseInt(template.getImage().getId());
> +      result.add(ProductItemPrice.builder().id(imageId).build());
> +
> +      Iterable<String> hardwareIds = 
> Splitter.on(",").split(template.getHardware().getId());
> +      for (String hardwareId : hardwareIds) {
> +         int id = Integer.parseInt(hardwareId);
> +         result.add(ProductItemPrice.builder().id(id).build());
> +      }
> +      Float portSpeed = 10f;

`float portSpeed`?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/77/files#r5494209

Reply via email to