> +/** > + * The bucket's lifecycle configuration. > + * > + * @see <a href= "https://developers.google.com/storage/docs/lifecycle" /> > + */ > + > +public class BucketLifeCycle { > + > + > + private final Set<Rule> rules; > + > + public BucketLifeCycle(Set<Rule> rule) { > + this.rules = rule == null ? ImmutableSet.<Rule> of() : rule; > + } > + > + public Set<Rule> getRule() {
Should this be `getRules`? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532705