> + * @see <a href= > "http://sldn.softlayer.com/reference/datatypes/SoftLayer_Container_Virtual_Guest_Configuration"/ > + * * > + */ > +public class ContainerVirtualGuestConfiguration { > + > + public static final String SWAP_DEVICE = "1"; > + > + public static Builder<?> builder() { > + return new ConcreteBuilder(); > + } > + > + public Builder<?> toBuilder() { > + return new > ConcreteBuilder().fromContainerVirtualGuestConfiguration(this); > + } > + > + public abstract static class Builder<T extends Builder<T>> {
If this builder is not going to be subclassed, don't make it an abstract class and remove the `ConcreteBuilder`. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/296/files#r12882559
