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

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

The newest version!
package com.netease.cloud.services.nos.model;

import com.netease.cloud.WebServiceRequest;

/**
 * 

* Provides options for returning a list of summary information about the * versions in a specified bucket. *

*/ public class GetObjectVersionsRequest extends WebServiceRequest { /** The name of the bucket containing the object to retrieve */ private String bucketName; /** The key under which the desired object is stored */ private String key; public GetObjectVersionsRequest(String bucketName, String key){ setBucketName(bucketName); setKey(key); } 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