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

org.daisy.pipeline.tts.config.ConfigProperties Maven / Gradle / Ivy

package org.daisy.pipeline.tts.config;

import java.util.Map;

public interface ConfigProperties {

	/**
	 * @return the properties retrieved from the configuration editable by end-users
	 */
	public Map getDynamicProperties();

	/**
	 * @return the properties retrieved from the configuration loaded at start-up
	 */
	public Map getStaticProperties();

	/**
	 * @return both kind of properties. The dynamic ones might be protected.
	 */
	public Map getAllProperties();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy