> + * A representation of a block device that should be attached to the Nova
> instance to be launched
> + *
> + */
> +public class BlockDeviceMapping {
> +
> + @Named("delete_on_termination")
> + String deleteOnTermination = "0";
> + @Named("device_name")
> + String deviceName = null;
> + @Named("volume_id")
> + String volumeId = null;
> + @Named("volume_size")
> + String volumeSize = "";
> +
> + @ConstructorProperties({"volume_id", "volume_size", "device_name",
> "delete_on_termination"})
> + private BlockDeviceMapping(String volumeId, String volumeSize, String
> deviceName, String deleteOnTermination) {
Domain object constructors should be `protected`. This applies to the other
constructors as well.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/326/files#r17753990