
com.aliyun.oss.model.GetAccessPointRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-sdk-oss Show documentation
Show all versions of aliyun-sdk-oss Show documentation
The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service
package com.aliyun.oss.model;
public class GetAccessPointRequest extends GenericRequest {
private String accessPointName;
public GetAccessPointRequest() {
}
public GetAccessPointRequest(String bucketName) {
super(bucketName);
}
public String getAccessPointName() {
return accessPointName;
}
public void setAccessPointName(String accessPointName) {
this.accessPointName = accessPointName;
}
public GetAccessPointRequest withAccessPointName(String accessPointName) {
this.accessPointName = accessPointName;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy