edu.asu.diging.gilesecosystem.util.properties.IPropertiesManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of giles-eco-util Show documentation
Show all versions of giles-eco-util Show documentation
Utility plugin for the Giles Ecoystem that for example provides utility classes
for properties or file management.
The newest version!
package edu.asu.diging.gilesecosystem.util.properties;
import java.util.Map;
import java.util.Observer;
import edu.asu.diging.gilesecosystem.util.exceptions.PropertiesStorageException;
public interface IPropertiesManager {
public abstract void setProperty(String key, String value) throws PropertiesStorageException;
public abstract String getProperty(String key);
public abstract void updateProperties(Map props)
throws PropertiesStorageException;
public void addObserver(Observer observer);
}