类 UploadPartResponse


  • public class UploadPartResponse
    extends Object
    Contains the details returned from Baidu Bos after calling the UploadPart operation.
    • 构造器详细资料

      • UploadPartResponse

        public UploadPartResponse()
    • 方法详细资料

      • getPartNumber

        public int getPartNumber()
        Returns the part number of the newly uploaded part.
        返回:
        The part number of the newly uploaded part.
      • setPartNumber

        public void setPartNumber​(int partNumber)
        Sets the part number of the newly uploaded part.
        参数:
        partNumber - the part number of the newly uploaded part.
      • getETag

        public String getETag()
        Returns the entity tag of the newly uploaded part. The entity tag is needed later when the multipart upload is completed.
        返回:
        the entity tag of the newly uploaded part.
      • setETag

        public void setETag​(String eTag)
        Sets the entity tag of the newly uploaded part.
        参数:
        eTag - the entity tag of the newly uploaded part.
      • getPartETag

        public PartETag getPartETag()
        Returns an identifier which identifies the upload part by its part number and the entity tag computed from the part's data. This information is later needed to complete a multipart upload.
        返回:
        An identifier which identifies the upload part by its part number and the entity tag computed from the part's data.