com.netease.cloud.services.nos.model.GetBucketAclRequest 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 com.netease.cloud.WebServiceRequest;
/**
* Request object containing all the options for requesting a bucket's Access
* Control List (ACL).
*/
public class GetBucketAclRequest extends WebServiceRequest {
/** The name of the bucket whose ACL is being retrieved. */
private String bucketName;
/**
* Constructs a new GetBucketAclRequest object, ready to retrieve the ACL
* for the specified bucket when executed.
*
* @param bucketName
* The name of the bucket whose ACL will be retrieved by this
* request when executed.
*/
public GetBucketAclRequest(String bucketName) {
this.bucketName = bucketName;
}
/**
* Returns the name of the bucket whose ACL will be retrieved by this
* request, when executed.
*
* @return The name of the bucket whose ACL will be retrieved by this
* request, when executed.
*/
public String getBucketName() {
return bucketName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy