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

com.github.ibole.infrastructure.common.properties.SystemEnvironmentVariables Maven / Gradle / Ivy

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