> + * associated with them.
> + */
> +public class SwiftResource implements Comparable<SwiftResource> {
> +
> +   public static Builder<?> builder() {
> +      return new ConcreteBuilder();
> +   }
> +
> +   public Builder<?> toBuilder() {
> +      return new ConcreteBuilder().fromSwiftResource(this);
> +   }
> +
> +   public abstract static class Builder<T extends Builder<T>> {
> +      protected abstract T self();
> +
> +      protected String transactionId;

Even better ;-) Thanks!

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6635087

Reply via email to