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

cn.ucloud.ufile.util.UfileProtocol Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package cn.ucloud.ufile.util;

/**
 * @description:
 * @author: joshua
 * @E-mail: [email protected]
 * @date: 2020/3/20 21:26
 */
public enum UfileProtocol {
    PROTOCOL_HTTP("http://"),
    PROTOCOL_HTTPS("https://");

    private String value;

    UfileProtocol(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy