> +
> +   public BucketTemplate addAcl(BucketAccessControls bucketAccessControls) {
> +
> +      if (this.acl == null) {
> +         this.acl = Sets.newLinkedHashSet();
> +      }
> +
> +      this.acl.add(bucketAccessControls);
> +      return this;
> +   }
> +
> +   public BucketTemplate acl(Set<BucketAccessControls> acl) {
> +
> +      if (this.acl == null) {
> +         this.acl = Sets.newLinkedHashSet();
> +      }

See above comment.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14528324

Reply via email to