com.qcloud.cos.model.EncryptedPutObjectRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.model;
import java.io.File;
import java.io.InputStream;
import java.io.Serializable;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
public class EncryptedPutObjectRequest extends PutObjectRequest
implements MaterialsDescriptionProvider, Serializable {
/**
* description of encryption materials to be used with this request.
*/
private Map materialsDescription;
public EncryptedPutObjectRequest(String bucketName, String key, File file) {
super(bucketName, key, file);
}
public EncryptedPutObjectRequest(String bucketName, String key, String redirectLocation) {
super(bucketName, key, redirectLocation);
}
public EncryptedPutObjectRequest(String bucketName, String key, InputStream input,
ObjectMetadata metadata) {
super(bucketName, key, input, metadata);
}
@Override
public Map getMaterialsDescription() {
return materialsDescription;
}
/**
* sets the materials description for the encryption materials to be used with the current
* PutObjectRequest.
*
* @param materialsDescription the materialsDescription to set
*/
public void setMaterialsDescription(Map materialsDescription) {
this.materialsDescription = materialsDescription == null ? null
: Collections.unmodifiableMap(new HashMap(materialsDescription));
}
/**
* sets the materials description for the encryption materials to be used with the current
* PutObjectRequest.
*
* @param materialsDescription the materialsDescription to set
*/
public EncryptedPutObjectRequest withMaterialsDescription(
Map materialsDescription) {
setMaterialsDescription(materialsDescription);
return this;
}
/**
* Returns a clone (as deep as possible) of this request object.
*/
@Override
public EncryptedPutObjectRequest clone() {
final EncryptedPutObjectRequest cloned =
new EncryptedPutObjectRequest(getBucketName(), getKey(), getFile());
super.copyPutObjectBaseTo(cloned);
final Map materialsDescription = getMaterialsDescription();
cloned.withMaterialsDescription(materialsDescription == null ? null
: new HashMap(materialsDescription));
return cloned;
}
}