类 UploadPartCopyResponse
- java.lang.Object
-
- com.baidubce.model.AbstractBceResponse
-
- com.baidubce.services.bos.model.BosResponse
-
- com.baidubce.services.bos.model.UploadPartCopyResponse
-
- 所有已实现的接口:
Serializable
public class UploadPartCopyResponse extends BosResponse
Contains the details returned from Baidu Bos after calling the UploadPartCopy operation.- 另请参阅:
- 序列化表格
-
-
字段概要
-
从类继承的字段 com.baidubce.model.AbstractBceResponse
metadata
-
-
构造器概要
构造器 构造器 说明 UploadPartCopyResponse()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetETag()Returns the entity tag of the newly uploaded part.PartETaggetPartETag()Returns an identifier which identifies the upload part by its part number and the entity tag computed from the part's data.intgetPartNumber()Returns the part number of the newly uploaded part.voidsetETag(String eTag)Sets the entity tag of the newly uploaded part.voidsetPartNumber(int partNumber)Sets the part number of the newly uploaded part.-
从类继承的方法 com.baidubce.services.bos.model.BosResponse
getMetadata
-
-
-
-
方法详细资料
-
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.
-
-