> + public Builder<?> toBuilder() {
> + return new
> ConcreteBuilder().fromVirtualGuestBlockDeviceTemplateGroup(this);
> + }
> +
> + public abstract static class Builder<T extends Builder<T>> {
> + protected abstract T self();
> +
> + protected int id;
> + protected String name;
> + protected String globalIdentifier;
> + protected int statusId;
> + protected int accountId;
> + protected int parentId;
> + protected String summary;
> + protected Set<VirtualGuestBlockDeviceTemplateGroup> children =
> ImmutableSet.of();
> + protected Set<VirtualGuestBlockDeviceTemplate> blockDevices =
> ImmutableSet.of();
Change to `ImmutableSet.Builder`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r10452221