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

com.qiniu.api.config.Config Maven / Gradle / Ivy

There is a newer version: 6.1.9
Show newest version
package com.qiniu.api.config;

/**
 * The Config class is a global configuration file for the sdk, used for serve
 * side only.
 */
public class Config {
	
	public static String USER_AGENT="qiniu java-sdk v6.0.0";
	
	/**
	 * You can get your accesskey from  https://dev.qiniutek.com 
	 */
	public static String ACCESS_KEY = "";

	/**
	 * You can get your accesskey from  https://dev.qiniutek.com 
	 */
	public static String SECRET_KEY = "";

	public static String RS_HOST = "http://rs.qbox.me";

	public static String UP_HOST = "http://up.qbox.me";
	
	public static String RSF_HOST = "http://rsf.qbox.me";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy