类 CompleteMultipartUploadResponse
- java.lang.Object
-
- com.baidubce.model.AbstractBceResponse
-
- com.baidubce.services.bos.model.BosResponse
-
- com.baidubce.services.bos.model.CompleteMultipartUploadResponse
-
- 所有已实现的接口:
Serializable
public class CompleteMultipartUploadResponse extends BosResponse
The CompleteMultipartUploadResponse contains all the information about the CompleteMultipartUpload method.- 另请参阅:
- 序列化表格
-
-
字段概要
-
从类继承的字段 com.baidubce.model.AbstractBceResponse
metadata
-
-
构造器概要
构造器 构造器 说明 CompleteMultipartUploadResponse()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetBucketName()Returns the name of the bucket containing the completed multipart object.StringgetETag()Returns the entity tag identifying the new object.StringgetKey()Gets the key by which the newly created object is stored.StringgetLocation()Returns the URL identifying the new multipart object.voidsetBucketName(String bucketName)Sets the name of the bucket containing the completed multipart object.voidsetETag(String eTag)Sets the entity tag identifying the new object.voidsetKey(String key)Sets the key of the newly created object.voidsetLocation(String location)Sets the URL identifying the new multipart object.-
从类继承的方法 com.baidubce.services.bos.model.BosResponse
getMetadata
-
-
-
-
方法详细资料
-
getLocation
public String getLocation()
Returns the URL identifying the new multipart object.- 返回:
- The URL identifying the new multipart object.
-
setLocation
public void setLocation(String location)
Sets the URL identifying the new multipart object.- 参数:
location- The URL identifying the new multipart object.
-
getBucketName
public String getBucketName()
Returns the name of the bucket containing the completed multipart object.- 返回:
- The name of the bucket containing the completed multipart object.
-
setBucketName
public void setBucketName(String bucketName)
Sets the name of the bucket containing the completed multipart object.- 参数:
bucketName- The name of the bucket containing the completed multipart object.
-
getKey
public String getKey()
Gets the key by which the newly created object is stored.- 返回:
- the key value
-
setKey
public void setKey(String key)
Sets the key of the newly created object.- 参数:
key- the key of the newly created object.
-
getETag
public String getETag()
Returns the entity tag identifying the new object. An entity tag is an opaque string that changes if and only if an object's data changes.- 返回:
- An opaque string that changes if and only if an object's data changes.
-
setETag
public void setETag(String eTag)
Sets the entity tag identifying the new object. An entity tag is an opaque string that changes if and only if an object's data changes.- 参数:
eTag- The entity tag.
-
-