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

net.stickycode.configuration.EnvironmentConfigurationKey Maven / Gradle / Ivy

package net.stickycode.configuration;

public class EnvironmentConfigurationKey
    implements ConfigurationKey {

  private String environmentPrefix;

  private ConfigurationKey key;

  public EnvironmentConfigurationKey(String environmentPrefix, ConfigurationKey key) {
    this.environmentPrefix = environmentPrefix;
    this.key = key;
  }

  @Override
  public String join(String separator) {
    return environmentPrefix + separator + key.join(separator);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy