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

com.qiniu.constants.DataSourceDef Maven / Gradle / Ivy

There is a newer version: 8.4.8
Show newest version
package com.qiniu.constants;

import java.util.HashSet;
import java.util.Set;

public class DataSourceDef {

    public static String QINIU = "qiniu";
    public static String TENCENT = "tencent";
    public static String ALIYUN = "aliyun";
    public static String LOCAL = "local";

    public static Set ossListSource = new HashSet(){{
        add(QINIU);
        add(TENCENT);
        add(ALIYUN);
    }};

    public static Set fileSource = new HashSet(){{
        add(LOCAL);
    }};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy