com.github.ibole.infrastructure.common.properties.SystemEnvironmentVariables Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infrastructure-all Show documentation
Show all versions of infrastructure-all Show documentation
The all in one project of ibole infrastructure
The newest version!
package com.github.ibole.infrastructure.common.properties;
/**
* Config name from System environment.
* @author bwang
*
*/
public enum SystemEnvironmentVariables {
EXTERNAL_CONFIG_PATH("EXTERNAL_CONFIG_PATH");
private String value;
SystemEnvironmentVariables(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy