All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netease.cloud.services.nos.model.GetObjectVersionsResult Maven / Gradle / Ivy

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