
com.qiniu.constants.DataSourceDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
qiniu-suits is a efficient tools for qiniu api implemented by java8.
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