> + > +import java.util.Date; > + > +import com.google.common.base.Objects; > + > +/** > + * This is an Internal Object used in BucketLifeCycles/Rules. > + */ > + > +public class Condition { > + private final Integer age; > + private final Date createdBefore; > + private final Boolean isLive; > + private final Integer numNewerVersions; > + > + public Condition(Integer age, Date createdBefore, Boolean isLive, Integer > numNewerVersions) {
All `@Nullable`, I guess? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532749