> +
> + public Builder<?> toBuilder() {
> + return new ConcreteBuilder().fromImage(this);
> + }
> +
> + public abstract static class Builder<T extends Builder<T>> extends
> Resource.Builder<T> {
> + protected Long size;
> + protected String checksum;
> + protected Date updatedAt;
> + protected Date createdAt;
> + protected Image.Status status;
> + protected String visibility;
> + protected String self;
> + protected String file;
> + protected String schema;
> + protected List<String> tags = ImmutableList.of();
also remove abstract builder
see:
apis/openstack-cinder/src/main/java/org/jclouds/openstack/cinder/v1/domain/zonescoped/AvailabilityZone.java
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/77/files#r20919450