Interface StorageConfiguration
-
- All Known Subinterfaces:
StorageActivityConfiguration
public interface StorageConfiguration
This interface provides the means to store aInheritedConfiguration
by using very simple data structures while simultaneously providing all information needed for inheritance and overriding.- Author:
- Ulrich Kreher
- See Also:
InheritedConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getFixedForChildren()
Gets the names of all configuration entries that may not be overridden by child configurations.Map<String,String>
getValues()
Gets the string representations of all configuration entries set in this configuration.
-
-
-
Method Detail
-
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 viaConfigurationTools
.- Returns:
- The string representations of all configuration entries of this configuration indexed by the corresponding configuration entry name.
-
-