> + 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;
Any reason this is declared down here and not at the top of the class?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/37/files#r4772852