![JAR search and dependency download from the Maven repository](/logo.png)
com.wiris.plugin.configuration.ConfigurationUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wirisplugin-api Show documentation
Show all versions of wirisplugin-api Show documentation
The WIRIS plugin API for Java
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