com.qcloud.cos.transfer.MultipleFileUpload 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.transfer;
import java.util.Collection;
/**
* Multiple file download of an entire virtual directory.
*/
public interface MultipleFileUpload extends Transfer {
/**
* Returns the key prefix of the virtual directory being uploaded.
*/
public String getKeyPrefix();
/**
* Returns the name of the bucket to which files are uploaded.
*/
public String getBucketName();
/**
* Returns a collection of sub transfers associated with the multi file upload.
*/
public Collection extends Upload> getSubTransfers();
}