com.github.ibole.infrastructure.common.properties.JVMSystemProperties 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 JVM properties setting.
*
* @author bwang
*
*/
public enum JVMSystemProperties {
EXTERNAL_CONFIG_PATH("external.config");
private String value;
JVMSystemProperties(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy