> + private final int groupId;
> + private final String units;
> + private final VirtualDiskImage diskImage;
> +
> + @ConstructorProperties({
> + "id", "device", "diskImageId", "diskSpace", "groupId", "units",
> "diskImage"
> + })
> + protected VirtualGuestBlockDeviceTemplate(int id, String device, int
> diskImageId, float diskSpace, int groupId,
> + String units, VirtualDiskImage
> diskImage) {
> + this.id = id;
> + this.device = device;
> + this.diskImageId = diskImageId;
> + this.diskSpace = diskSpace;
> + this.groupId = groupId;
> + this.units = units;
> + this.diskImage = diskImage;
Same again. Add null checks for all mandatory properties or add the
corresponding `@Nullable` annotations.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r11139129