> + return new AutoValue_ListUnfinishedLargeFilesResponse(nextFileId,
> ImmutableList.copyOf(files));
> + }
> +
> + @AutoValue
> + public abstract static class Entry {
> + public abstract String accountId();
> + public abstract String bucketId();
> + public abstract String contentType();
> + public abstract String fileId();
> + public abstract Map<String, String> fileInfo();
> + public abstract String fileName();
> + public abstract Date uploadTimestamp();
> +
> + @SerializedNames({"accountId", "bucketId", "contentType", "fileId",
> "fileInfo", "fileName", "uploadTimestamp"})
> + public static Entry create(String accountId, String bucketId, String
> contentType, String fileId, Map<String, String> fileInfo, String fileName,
> long uploadTimestamp) {
> + return new
> AutoValue_ListUnfinishedLargeFilesResponse_Entry(accountId, bucketId,
> contentType, fileId, fileInfo, fileName, new Date(uploadTimestamp));
Done.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/282/files/56c8b214ce51990e7709991bc55605190195b133#r67432861