> + public Builder responseHeader(Set<String> responseHeader) { > + this.reponseHeaders.addAll(responseHeader); > + return this; > + } > + > + public Builder maxAgeSeconds(Integer maxAgeSeconds) { > + this.maxAgeSeconds = maxAgeSeconds; > + return this; > + } > + > + public BucketCors build() { > + return new BucketCors(this.origins.build(), this.methods.build(), > this.reponseHeaders.build(), > + this.maxAgeSeconds); > + } > + > + public Builder fromCors(BucketCors c) {
[minor] Rename the variable to `bc`, `cors`, `from` or `bucketCors`? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532629