Interface StorageConfiguration

All Known Subinterfaces:
StorageActivityConfiguration

public interface StorageConfiguration
This interface provides the means to store a InheritedConfiguration by using very simple data structures while simultaneously providing all information needed for inheritance and overriding.
Author:
Ulrich Kreher
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the names of all configuration entries that may not be overridden by child configurations.
    Gets the string representations of all configuration entries set in this configuration.
  • Method Details

    • getValues

      Map<String,String> getValues()
      Gets the string representations of all configuration entries set in this configuration. The returned object maps from configuration entry names to the corresponding string representation of the values.
      The string representations are retrieved via ConfigurationTools.
      Returns:
      The string representations of all configuration entries of this configuration indexed by the corresponding configuration entry name.
    • getFixedForChildren

      Set<String> getFixedForChildren()
      Gets the names of all configuration entries that may not be overridden by child configurations.
      Returns:
      The names of all configuration entries that may not be overridden by child configurations.