andrewgaul commented on this pull request.
> + */
+@Beta
+public final class PartIdsFromHttpResponseFull extends
ParseSax.HandlerWithResult<Map<Integer, ListMultipartUploadResponse>> {
+ private final StringBuilder currentText = new StringBuilder();
+
+ private final DateService dateParser;
+
+ private int partNumber;
+ private Date lastModfied;
+ private String eTag;
+ private long size;
+
+ private final ImmutableMap.Builder<Integer, ListMultipartUploadResponse>
parts = ImmutableMap.builder();
+
+ @Inject
+ public PartIdsFromHttpResponseFull(DateService dateParser) {
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/pull/1063#discussion_r104575929