> +   @SerializedName("LastInventoryDate")
> +   private final Date lastInventoryDate;
> +   @SerializedName("NumberOfArchives")
> +   private final Long numberOfArchives;
> +   @SerializedName("SizeInBytes")
> +   private final Long sizeInBytes;
> +
> +   @ConstructorProperties({ "VaultName", "VaultARN", "CreationDate", 
> "LastInventoryDate", "NumberOfArchives",
> +         "SizeInBytes" })
> +   public VaultMetadata(String vaultName, String vaultARN, Date 
> creationDate, @Nullable Date lastInventoryDate,
> +         long numberOfArchives, long sizeInBytes) {
> +      this.vaultName = checkNotNull(vaultName);
> +      this.vaultARN = checkNotNull(vaultARN);
> +      this.creationDate = checkNotNull(creationDate);
> +      this.lastInventoryDate = lastInventoryDate;
> +      this.numberOfArchives = checkNotNull(numberOfArchives);

Input is a `long`, so can't be null? Any reason the field is a `Long`, by the 
way?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r13034665

Reply via email to