com.aliyun.oss.model.RegionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-sdk-oss-shade Show documentation
Show all versions of aliyun-sdk-oss-shade Show documentation
The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service, includes all service and dependent JARs.
The newest version!
package com.aliyun.oss.model;
public class RegionInfo extends GenericResult {
private String region;
private String internetEndpoint;
private String internalEndpoint;
private String accelerateEndpoint;
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public String getInternetEndpoint() {
return internetEndpoint;
}
public void setInternetEndpoint(String internetEndpoint) {
this.internetEndpoint = internetEndpoint;
}
public String getInternalEndpoint() {
return internalEndpoint;
}
public void setInternalEndpoint(String internalEndpoint) {
this.internalEndpoint = internalEndpoint;
}
public String getAccelerateEndpoint() {
return accelerateEndpoint;
}
public void setAccelerateEndpoint(String accelerateEndpoint) {
this.accelerateEndpoint = accelerateEndpoint;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy