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

com.wiris.plugin.configuration.ConfigurationUpdater Maven / Gradle / Ivy

The newest version!
package com.wiris.plugin.configuration;

import java.util.Properties;

public interface ConfigurationUpdater {
    /**
     * Initializes the configuration udpater system. This method is called before any call to other methods.
     */
    void init();
    
    /**
     * Updates the configuration table with the desired values. It is expected to
     * call {@link Properties.setProperty} to change the value of any property.
     * 
     * @param configuration The configuration table.
     */
    void updateConfiguration(Properties configuration);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy