> + }
> +
> + public BucketTemplate lifeCycle(BucketLifeCycle lifeCycle) {
> + this.lifeCycle = lifeCycle;
> + return this;
> + }
> +
> + public BucketTemplate storageClass(StorageClass storageClass) {
> + this.storageClass = storageClass;
> + return this;
> + }
> +
> + public BucketTemplate addAcl(BucketAccessControls bucketAccessControls) {
> +
> + if (this.acl == null) {
> + this.acl = Sets.newLinkedHashSet();
Linked hash set because we need a consistent ordering for _testing_ or actually
in the code? Also: if we're going to do this anyway, how about initializing the
variable to an empty set straight away?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14528307