类 ListPartsResult


public class ListPartsResult extends HeaderResponse
Response to a request for listing uploaded parts
  • 字段详细资料

    • bucket

      private String bucket
    • key

      private String key
    • uploadId

      private String uploadId
    • initiator

      private Owner initiator
    • owner

      private Owner owner
    • storageClass

      private StorageClassEnum storageClass
    • multipartList

      private List<Multipart> multipartList
    • maxParts

      private Integer maxParts
    • isTruncated

      private boolean isTruncated
    • partNumberMarker

      private String partNumberMarker
    • nextPartNumberMarker

      private String nextPartNumberMarker
  • 构造器详细资料

  • 方法详细资料

    • getBucket

      public String getBucket()
      Obtain the name of the bucket to which the multipart upload belongs.
      返回:
      Name of the bucket to which the multipart upload belongs
    • getKey

      public String getKey()
      Obtain the name of the object involved in the multipart upload.
      返回:
      Name of the object involved in the multipart upload
    • getUploadId

      public String getUploadId()
      Obtain the multipart upload ID.
      返回:
      Multipart upload ID
    • getInitiator

      public Owner getInitiator()
      Creator of the multipart upload
      返回:
      Creator of the multipart upload
    • getOwner

      public Owner getOwner()
      Query the creator of the multipart upload.
      返回:
      Owner of the multipart upload
    • getStorageClass

      @Deprecated public String getStorageClass()
      已过时。
      Obtain the storage class of the object involved in the multipart upload.
      返回:
      Storage class of the object involved in the multipart upload
    • getObjectStorageClass

      public StorageClassEnum getObjectStorageClass()
      Obtain the storage class of the object involved in the multipart upload.
      返回:
      Storage class of the object involved in the multipart upload
    • getMaxParts

      public Integer getMaxParts()
      Obtain the maximum number of uploaded parts to be listed.
      返回:
      Maximum number of uploaded parts to be listed
    • getMultipartList

      public List<Multipart> getMultipartList()
      Obtain the list of uploaded parts.
      返回:
      List of uploaded parts
    • isTruncated

      public boolean isTruncated()
      Check whether the query result list is truncated. Value "true" indicates that the results are incomplete while value "false" indicates that the results are complete.
      返回:
      Truncation identifier
    • getPartNumberMarker

      public String getPartNumberMarker()
      Obtain the start position for listing parts.
      返回:
      Start position for listing parts
    • getNextPartNumberMarker

      public String getNextPartNumberMarker()
      Obtain the start position for next listing.
      返回:
      Start position for next listing
    • toString

      public String toString()
      覆盖:
      toString 在类中 HeaderResponse