com.netease.cloud.services.nos.model.GetObjectVersionsResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.services.nos.model;
import java.util.ArrayList;
import java.util.List;
/**
*
* Contain the return data of get object history versions operation.
*
*/
public class GetObjectVersionsResult {
/**
* A list of summary information describing the objects stored in the bucket
*/
private List versionSummary = new ArrayList();
/** The name of the bucket containing the listed objects */
private String bucketName;
private String key;
public List getVersionSummary() {
return versionSummary;
}
public void setVersionSummary(List versionSummary) {
this.versionSummary = versionSummary;
}
public String getBucketName() {
return bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy