Interface ModifiableConfiguration

All Superinterfaces:
Cloneable, Configuration, Serializable
All Known Implementing Classes:
DefaultConfiguration, HierarchicalConfiguration, PackageManager.PackageConfiguration, PropertyFileConfiguration, SystemPropertyConfiguration

public interface ModifiableConfiguration extends Configuration
A modifiable configuration.
Author:
Thomas Morgner
  • Method Details

    • setConfigProperty

      void setConfigProperty(String key, String value)
      Sets the value of a configuration property.
      Parameters:
      key - the property key.
      value - the property value.
    • getConfigProperties

      Enumeration getConfigProperties()
      Returns the configuration properties.
      Specified by:
      getConfigProperties in interface Configuration
      Returns:
      The configuration properties.
    • findPropertyKeys

      Iterator findPropertyKeys(String prefix)
      Returns an iterator for the keys beginning with the specified prefix.
      Specified by:
      findPropertyKeys in interface Configuration
      Parameters:
      prefix - the prefix.
      Returns:
      The iterator.