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

edu.asu.diging.gilesecosystem.util.properties.IPropertiesManager Maven / Gradle / Ivy

Go to download

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy