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

com.aliyun.oss.model.GetBucketHttpsConfigResult Maven / Gradle / Ivy

Go to download

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;

import java.util.ArrayList;
import java.util.List;

public class GetBucketHttpsConfigResult extends GenericResult {
    private boolean enable = false;
    private List tlsVersion = new ArrayList();

    public boolean isEnable() {
        return enable;
    }

    public void setEnable(boolean enable) {
        this.enable = enable;
    }

    public List getTlsVersion() {
        return tlsVersion;
    }

    public void setTlsVersion(List tlsVersion) {
        this.tlsVersion = tlsVersion;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy