> +      public HttpRedirect.Builder zone(String zone) {
> +         this.zone = zone;
> +         return this;
> +      }
> +
> +      public HttpRedirect build() {
> +         return new HttpRedirect(url, code, keepUri, fqdn, zone);
> +      }
> +   }
> +
> +   public static HttpRedirect.Builder builder() {
> +      return new Builder();
> +   }
> +
> +   // transient to avoid serializing by default, for example in json
> +   private final transient ImmutableMap<String, Object> delegate;

Cribbed from a sibling class -- I'm not a fan of that either -- will change.

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

Reply via email to