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

io.polaris.core.env.PropertiesWrapper Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.env;

import java.util.Properties;
import java.util.Set;

/**
 * @author Qt
 * @since  Apr 23, 2024
 */
class PropertiesWrapper implements Env {

	private final Properties properties;
	private final String name;

	public PropertiesWrapper(Properties properties) {
		this(null, properties);
	}

	public PropertiesWrapper(String name, Properties properties) {
		this.name = name;
		this.properties = properties;
	}

	@Override
	public String name() {
		return name;
	}

	@Override
	public void set(String key, String value) {
		properties.setProperty(key, value);
	}

	@Override
	public String get(String key) {
		return properties.getProperty(key);
	}

	@Override
	public void remove(String key) {
		properties.remove(key);
	}

	@Override
	public Set keys() {
		return properties.stringPropertyNames();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy