@ConsumerType
public interface ConfigurationPersistenceStrategy2
Modifier and Type | Method and Description |
---|---|
boolean |
deleteConfiguration(ResourceResolver resourceResolver,
String configResourcePath)
Delete configuration or configuration collection data from repository using the inner-most context path as reference.
|
String |
getCollectionItemConfigName(String configName,
String relatedConfigPath)
Allows the strategy to transform the given configuration name for nested configurations according to it's persistent strategies,
e.g.
|
Resource |
getCollectionItemResource(Resource resource)
Allows the strategy to transform the given configuration resource according to it's persistent strategies,
e.g.
|
String |
getCollectionItemResourcePath(String resourcePath)
Allows the strategy to transform the given configuration resource path according to it's persistent strategies,
e.g.
|
String |
getCollectionParentConfigName(String configName,
String relatedConfigPath)
Allows the strategy to transform the given configuration name for nested configurations according to it's persistent strategies,
e.g.
|
Resource |
getCollectionParentResource(Resource resource)
Allows the strategy to transform the given configuration resource according to it's persistent strategies,
e.g.
|
String |
getCollectionParentResourcePath(String resourcePath)
Allows the strategy to transform the given configuration resource path according to it's persistent strategies,
e.g.
|
String |
getConfigName(String configName,
String relatedConfigPath)
Allows the strategy to transform the given configuration name for nested configurations according to it's persistent strategies,
e.g.
|
Resource |
getResource(Resource resource)
Allows the strategy to transform the given configuration resource according to it's persistent strategies,
e.g.
|
String |
getResourcePath(String resourcePath)
Allows the strategy to transform the given configuration resource path according to it's persistent strategies,
e.g.
|
boolean |
persistConfiguration(ResourceResolver resourceResolver,
String configResourcePath,
ConfigurationPersistData data)
Stores configuration data for a singleton configuration resource.
|
boolean |
persistConfigurationCollection(ResourceResolver resourceResolver,
String configResourceCollectionParentPath,
ConfigurationCollectionPersistData data)
Stores configuration data for a configuration resource collection.
|
@CheckForNull Resource getResource(@Nonnull Resource resource)
resource
- Singleton configuration resource@CheckForNull Resource getCollectionParentResource(@Nonnull Resource resource)
resource
- Configuration collection parent resource@CheckForNull Resource getCollectionItemResource(@Nonnull Resource resource)
resource
- Configuration collection item resource@CheckForNull String getResourcePath(@Nonnull String resourcePath)
resourcePath
- Configuration resource path (full path)@CheckForNull String getCollectionParentResourcePath(@Nonnull String resourcePath)
resourcePath
- Configuration collection parent resource path (full path)@CheckForNull String getCollectionItemResourcePath(@Nonnull String resourcePath)
resourcePath
- Configuration collection item resource path (full path)@CheckForNull String getConfigName(@Nonnull String configName, @CheckForNull String relatedConfigPath)
configName
- Configuration namerelatedConfigPath
- Path of a configuration resource that was resolved in context of this configuration name.
This can be used to detect if the persistence strategy supports the configuration location. If null it should be assumed that it matches.@CheckForNull String getCollectionParentConfigName(@Nonnull String configName, @CheckForNull String relatedConfigPath)
configName
- Configuration namerelatedConfigPath
- Path of a configuration resource that was resolved in context of this configuration name.
This can be used to detect if the persistence strategy supports the configuration location. If null it should be assumed that it matches.@CheckForNull String getCollectionItemConfigName(@Nonnull String configName, @CheckForNull String relatedConfigPath)
configName
- Configuration namerelatedConfigPath
- Path of a configuration resource that was resolved in context of this configuration name.
This can be used to detect if the persistence strategy supports the configuration location. If null it should be assumed that it matches.boolean persistConfiguration(@Nonnull ResourceResolver resourceResolver, @Nonnull String configResourcePath, @Nonnull ConfigurationPersistData data)
resourceResolver
- Resource resolverconfigResourcePath
- Path to store configuration data to. The resource (and it's parents) may not exist and may have to be created.data
- Configuration data to be stored. All existing properties are erased and replaced with the new ones.boolean persistConfigurationCollection(@Nonnull ResourceResolver resourceResolver, @Nonnull String configResourceCollectionParentPath, @Nonnull ConfigurationCollectionPersistData data)
resourceResolver
- Resource resolverconfigResourceCollectionParentPath
- Parent path to store configuration collection data to.
The resource (and it's parents) may not exist and may have to be created.data
- Configuration collection data. All existing collection entries on this context path level are erased and replaced with the new ones.boolean deleteConfiguration(@Nonnull ResourceResolver resourceResolver, @Nonnull String configResourcePath)
resourceResolver
- Resource resolverconfigResourcePath
- Path to store configuration data to. The resource (and it's parents) may not exist and may have to be created.Copyright © 2017 The Apache Software Foundation. All rights reserved.