> + * Class VirtualGuestBlockDeviceTemplate
> + *
> + * @author Andrea Turli
> + * @see <a href= 
> "http://sldn.softlayer.com/reference/datatypes/SoftLayer_Virtual_Guest_Block_Device_Template"/>
> + */
> +public class VirtualGuestBlockDeviceTemplate {
> +
> +   public static Builder<?> builder() {
> +      return new ConcreteBuilder();
> +   }
> +
> +   public Builder<?> toBuilder() {
> +      return new ConcreteBuilder().fromVirtualGuestBlockDeviceTemplate(this);
> +   }
> +
> +   public abstract static class Builder<T extends Builder<T>>  {

Same comment about builders. Don't make it abstract and remove the 
`ConcreteBuilder`.

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

Reply via email to