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

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

package net.stickycode.configuration;

/**
 * A key that has no components
 */
public class PlainConfigurationKey
    implements ConfigurationKey {

  private String key;

  public PlainConfigurationKey(String key) {
    this.key = key;
  }

  @Override
  public String join(String string) {
    return key;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy