com.qcloud.cos.model.PartSummary 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.Serializable;
import java.util.Date;
/**
* Container for summary information about a part in a multipart upload, such as
* part number, size, etc.
*/
public class PartSummary implements Serializable {
/**
* The part number describing this part's position relative to the other
* parts in the multipart upload. Part number must be between 1 and 10,000
* (inclusive).
*/
private int partNumber;
/** The date at which this part was last modified. */
private Date lastModified;
/** The entity tag generated from the part content. */
private String eTag;
/** The size, in bytes, of the part. */
private long size;
/**
* Returns the part number describing this part's position relative to the
* other parts in the multipart upload. Part number must be between 1 and
* 10,000 (inclusive).
*
* @return the part number describing this part's position relative to the
* other parts in the multipart upload. Part number must be between
* 1 and 10,000 (inclusive).
*/
public int getPartNumber() {
return partNumber;
}
/**
* Sets the part number describing this part's position relative to the
* other parts in the multipart upload. Part number must be between 1 and
* 10,000 (inclusive).
*
* @param partNumber
* the part number describing this part's position relative to
* the other parts in the multipart upload. Part number must be
* between 1 and 10,000 (inclusive).
*/
public void setPartNumber(int partNumber) {
this.partNumber = partNumber;
}
/**
* Returns the date this part was last modified.
*
* @return the date this part was last modified.
*/
public Date getLastModified() {
return lastModified;
}
/**
* Sets the date this part was last modified.
*
* @param lastModified
* the date this part was last modified.
*/
public void setLastModified(Date lastModified) {
this.lastModified = lastModified;
}
/**
* Returns the entity tag generated from the part content.
*
* @return the entity tag generated from the part content.
*/
public String getETag() {
return eTag;
}
/**
* Sets the entity tag generated from the part content.
*
* @param eTag
* the entity tag generated from the part content.
*/
public void setETag(String eTag) {
this.eTag = eTag;
}
/**
* Returns the size of this part, in bytes.
*
* @return the size of this part, in bytes.
*/
public long getSize() {
return size;
}
/**
* Sets the size of this part, in bytes.
*
* @param size
* the size of this part, in bytes.
*/
public void setSize(long size) {
this.size = size;
}
}