Interface ConfigurationMetadataRepository
- All Known Implementing Classes:
SimpleConfigurationMetadataRepository
public interface ConfigurationMetadataRepository
A repository of configuration metadata.
- Since:
- 1.3.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Defines the name of the "root" group, that is the group that gathers all the properties that aren't attached to a specific group. -
Method Summary
Modifier and TypeMethodDescriptionReturn the groups, indexed by id.Return the properties, indexed by id.
-
Field Details
-
ROOT_GROUP
Defines the name of the "root" group, that is the group that gathers all the properties that aren't attached to a specific group.- See Also:
-
-
Method Details
-
getAllGroups
Map<String,ConfigurationMetadataGroup> getAllGroups()Return the groups, indexed by id.- Returns:
- all configuration meta-data groups
-
getAllProperties
Map<String,ConfigurationMetadataProperty> getAllProperties()Return the properties, indexed by id.- Returns:
- all configuration meta-data properties
-