> +   @Override
> +   public String toString() {
> +      return "InventoryRetrievalParameters [archiveId=" + archiveId + ", 
> description=" + description + ", range="
> +            + range + "]";
> +   }
> +
> +   public static Builder builder() {
> +      return new Builder();
> +   }
> +
> +   public static class Builder {
> +      private String archiveId;
> +      private String description;
> +      private ContentRange range;
> +
> +      public Builder() {

Should this be package-access instead of public-access?  Callers should use 
`ArchiveRetrievalJobRequest.builder` correct?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/25/files#r14262427

Reply via email to