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

org.onetwo.common.propconf.Environment Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.common.propconf;

/****
 * @see Env
 * @author weishao
 *
 */
public class Environment {

	/******
	 * 定义环境
	 */
	public static final String PRODUCT = "product";
	public static final String DEV = "dev";
	public static final String TEST = "test";
	public static final String DEV_LOCAL = "dev-local";
	public static final String TEST_LOCAL = "test-local";
	
	/*public static class EnvLable {
		public static final Map values = new HashMap();
		
		public static final KVEntry product = KVEntry.create(Environment.PRODUCT, "生产环境", values);
		public static final KVEntry test = KVEntry.create(Environment.TEST, "测试环境", values);
		public static final KVEntry dev = KVEntry.create(Environment.DEV, "开发环境", values);
		public static final KVEntry dev_local = KVEntry.create(Environment.DEV_LOCAL, "本地开发环境", values);
		public static final KVEntry test_local = KVEntry.create(Environment.TEST_LOCAL, "本地测试环境", values);
	}*/

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy