Interface ConfigurationCollectionData
-
@ProviderType public interface ConfigurationCollectionData
Provides access to the configuration collection data and metadata for a given context path.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull java.lang.String
getConfigName()
Get configuration name.@NotNull java.util.Collection<ConfigurationData>
getItems()
@NotNull java.util.Map<java.lang.String,java.lang.Object>
getProperties()
@Nullable java.lang.String
getResourcePath()
-
-
-
Method Detail
-
getConfigName
@NotNull @NotNull java.lang.String getConfigName()
Get configuration name.- Returns:
- Configuration name
-
getItems
@NotNull @NotNull java.util.Collection<ConfigurationData> getItems()
- Returns:
- Configuration collection items
-
getResourcePath
@Nullable @Nullable java.lang.String getResourcePath()
- Returns:
- Path of the configuration collection resource parent path or null if it cannot be determined.
-
getProperties
@NotNull @NotNull java.util.Map<java.lang.String,java.lang.Object> getProperties()
- Returns:
- Properties for the configuration collection itself. Does not contain configuration data, but control data e.g. for enabling collection inheritance.
-
-