|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConfigurationKey | |
---|---|
de.smartics.properties.api.config.app | Provides application configurations to be used by clients to this library. |
de.smartics.properties.api.config.domain | Provides domain objects for configuration. |
de.smartics.properties.api.config.domain.key | Provides runtime structures to access property values. |
de.smartics.properties.impl.config.cache | Provides a ConfigurationPropertiesManagement implementation that provides a cache. |
de.smartics.properties.impl.config.classpath | Provides a ConfigurationProperties implementation based on Properties that provides properties from registered declarations and definitions on the class path. |
de.smartics.properties.impl.config.ds | Provides a SerializableConfigurationPropertiesManagement implementation based on DataSource . |
de.smartics.properties.impl.config.properties | Provides a ConfigurationProperties implementation based on Properties . |
de.smartics.properties.impl.config.resource | Provides a SerializableConfigurationPropertiesManagement implementation based on accessing remote resources. |
de.smartics.properties.spi.config.definition | Provides helpers to deal with definition.xml information. |
de.smartics.properties.spi.config.domain | Provides domain objects for configuration. |
de.smartics.properties.spi.config.ds | Provides implementations to provide access to data sources from configuration factories. |
de.smartics.properties.spi.config.resolve | Provides an interface to the resolving placeholders. |
de.smartics.properties.spi.config.support | Provides helpers for service provider to implement ConfigurationPropertiesFactory . |
Uses of ConfigurationKey in de.smartics.properties.api.config.app |
---|
Methods in de.smartics.properties.api.config.app that return types with arguments of type ConfigurationKey | |
---|---|
Collection<ConfigurationKey> |
ConfigurationPropertiesFactory.getRegisteredConfigurationKeys() Returns a list of keys to the registered configurations. |
Collection<ConfigurationKey> |
ConfigurationPropertiesFactory.matrialize() Materializes all configurations found by this factory. |
Methods in de.smartics.properties.api.config.app with parameters of type ConfigurationKey | |
---|---|
ConfigurationProperties |
ConfigurationPropertiesFactory.create(ConfigurationKey key) Returns the configuration properties for the given key . |
ConfigurationPropertiesManagement |
ConfigurationPropertiesFactory.createManagement(ConfigurationKey key) Returns the configuration properties for the given key . |
Uses of ConfigurationKey in de.smartics.properties.api.config.domain |
---|
Methods in de.smartics.properties.api.config.domain that return ConfigurationKey | |
---|---|
ConfigurationKey |
PropertyProvider.getConfigurationKey() The key of the configuration this property provider provides properties for. |
ConfigurationKey |
PropertyIndex.getConfigurationKey() Returns the key to the configuration the properties are part of. |
ConfigurationKey |
ConfigurationProperties.getKey() Returns the key of the configuration. |
ConfigurationKey |
ConfigurationException.getKey() Returns the key to the configuration that signaled problems. |
Methods in de.smartics.properties.api.config.domain that return types with arguments of type ConfigurationKey | |
---|---|
Collection<ConfigurationKey> |
ConfigurationRepositoryManagement.getKeys() Returns the list of keys with configuration properties. |
Methods in de.smartics.properties.api.config.domain with parameters of type ConfigurationKey | |
---|---|
ConfigurationPropertiesManagement |
ConfigurationRepositoryManagement.deregisterProperties(ConfigurationKey key) Removes the configuration properties for the given configuration key. |
ConfigurationProperties |
ConfigurationRepository.getProperties(ConfigurationKey key) Fetches the properties for the given configuration key . |
ConfigurationPropertiesManagement |
ConfigurationRepositoryManagement.getPropertiesManagement(ConfigurationKey key) Fetches the properties management for the given configuration key. |
ConfigurationPropertiesManagement |
ConfigurationRepositoryManagement.getPropertiesManagementWithDefaults(ConfigurationKey key) Fetches the properties management for the given configuration key. |
boolean |
ConfigurationRepositoryManagement.hasPropertiesManagement(ConfigurationKey key) Checks if a properties management for the given configuration key is present. |
void |
ConfigurationRepositoryManagement.registerProperties(ConfigurationKey key, ConfigurationPropertiesManagement configurationProperties) Registers the given configuration properties for the given configuration key . |
Uses of ConfigurationKey in de.smartics.properties.api.config.domain.key |
---|
Methods in de.smartics.properties.api.config.domain.key that return ConfigurationKey | |
---|---|
ConfigurationKey |
ConfigurationKeyBuilder.build() Creates an ConfigurationKey instance. |
ConfigurationKey |
ConfigurationKeyHelper.load(Class<?> locator) Loads the application identifier from the manifest file pointed at by the given locator class. |
ConfigurationKey |
ConfigurationKeyHelper.load(EnvironmentId environmentId, Class<?> locator) Loads the application identifier from the manifest file pointed at by the given locator class. |
ConfigurationKey |
ConfigurationKeyHelper.load(String environmentName, Class<?> locator) Loads the application identifier from the manifest file pointed at by the given locator class. |
Methods in de.smartics.properties.api.config.domain.key with parameters of type ConfigurationKey | |
---|---|
int |
ConfigurationKey.compareTo(ConfigurationKey o) |
Uses of ConfigurationKey in de.smartics.properties.impl.config.cache |
---|
Methods in de.smartics.properties.impl.config.cache that return ConfigurationKey | |
---|---|
ConfigurationKey |
AbstractCacheConfigurationPropertiesManagement.getKey() |
Uses of ConfigurationKey in de.smartics.properties.impl.config.classpath |
---|
Methods in de.smartics.properties.impl.config.classpath with parameters of type ConfigurationKey | |
---|---|
protected ClasspathConfigurationProperties |
ClasspathConfigurationPropertiesFactory.createNewConfiguration(ConfigurationKey key) |
Constructors in de.smartics.properties.impl.config.classpath with parameters of type ConfigurationKey | |
---|---|
ClasspathConfigurationProperties(ConfigurationKey key) Convenience constructor using its own registry. |
|
ClasspathConfigurationProperties(ConfigurationKey key, PropertyDescriptorRegistry registry) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.impl.config.ds |
---|
Methods in de.smartics.properties.impl.config.ds with parameters of type ConfigurationKey | |
---|---|
protected ConfigurationPropertiesManagement |
DataSourceConfigurationPropertiesFactory.createNewConfiguration(ConfigurationKey key) |
void |
DataSourceConfigurationPropertiesFactory.setDataSourceProxy(ConfigurationKey configurationKey, DataSourceProxy dataSourceProxy) Sets the proxy to the data source that provides properties information. |
void |
DataSourceConfigurationPropertiesFactory.setManager(ConfigurationKey configurationKey, PropertiesStore manager) Sets the proxy to the data source manager that provides properties information. |
Constructors in de.smartics.properties.impl.config.ds with parameters of type ConfigurationKey | |
---|---|
DataSourceConfigurationProperties(ConfigurationKey key, PropertyDescriptorRegistry registry, PropertiesStore store) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.impl.config.properties |
---|
Methods in de.smartics.properties.impl.config.properties with parameters of type ConfigurationKey | |
---|---|
protected PropertiesConfigurationProperties |
PropertiesConfigurationPropertiesFactory.createNewConfiguration(ConfigurationKey key) |
Constructors in de.smartics.properties.impl.config.properties with parameters of type ConfigurationKey | |
---|---|
PropertiesConfigurationProperties(ConfigurationKey key) Convenience constructor using its own registry. |
|
PropertiesConfigurationProperties(ConfigurationKey key, PropertyDescriptorRegistry registry) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.impl.config.resource |
---|
Methods in de.smartics.properties.impl.config.resource with parameters of type ConfigurationKey | |
---|---|
protected ConfigurationPropertiesManagement |
ResourceConfigurationPropertiesFactory.createNewConfiguration(ConfigurationKey key) |
Uses of ConfigurationKey in de.smartics.properties.spi.config.definition |
---|
Methods in de.smartics.properties.spi.config.definition that return ConfigurationKey | |
---|---|
ConfigurationKey |
PropertiesDefinitionContext.getKey(String path) Returns the configuration key associated with the given path . |
ConfigurationKey |
DefinitionKeyHelper.parse(String pathWithFile) Parses the given path to create a configuration key. |
Constructor parameters in de.smartics.properties.spi.config.definition with type arguments of type ConfigurationKey | |
---|---|
PropertiesDefinitionContext(Set<String> environments, Set<String> nodes, Set<String> groups, Map<String,ConfigurationKey> files) Convenience constructor using the default TLDs. |
|
PropertiesDefinitionContext(Set<String> tlds, Set<String> environments, Set<String> nodes, Set<String> groups, Map<String,ConfigurationKey> files) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.spi.config.domain |
---|
Methods in de.smartics.properties.spi.config.domain that return ConfigurationKey | |
---|---|
ConfigurationKey |
ConfigurationPropertiesProxy.getKey() Returns the key of the configuration properties instance is to be associated with. |
Constructors in de.smartics.properties.spi.config.domain with parameters of type ConfigurationKey | |
---|---|
ConfigurationPropertiesManagementProxy(ConfigurationKey key, ConfigurationPropertiesFactory factory) Default constructor. |
|
ConfigurationPropertiesProxy(ConfigurationKey key, ConfigurationPropertiesFactory factory) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.spi.config.ds |
---|
Methods in de.smartics.properties.spi.config.ds that return ConfigurationKey | |
---|---|
ConfigurationKey |
DataSourceConfigurationPropertyProvider.getConfigurationKey() |
Constructors in de.smartics.properties.spi.config.ds with parameters of type ConfigurationKey | |
---|---|
DataSourceConfigurationPropertyProvider(ConfigurationKey configurationKey, PropertiesStore manager) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.spi.config.resolve |
---|
Methods in de.smartics.properties.spi.config.resolve that return ConfigurationKey | |
---|---|
ConfigurationKey |
ResolveContext.getKey() Returns the unique identifier of the wrapped properties configuration. |
ConfigurationKey |
ConfigurationPropertiesResolveContext.getKey() Returns the unique identifier of the wrapped properties configuration. |
Constructors in de.smartics.properties.spi.config.resolve with parameters of type ConfigurationKey | |
---|---|
ResolveConfigurationException(ConfigurationKey key, String expression) Convenience constructor without a root cause. |
|
ResolveConfigurationException(Throwable cause, ConfigurationKey key, String expression) Default constructor. |
Uses of ConfigurationKey in de.smartics.properties.spi.config.support |
---|
Methods in de.smartics.properties.spi.config.support that return ConfigurationKey | |
---|---|
ConfigurationKey |
PropertiesPropertyProvider.getConfigurationKey() |
ConfigurationKey |
InMemoryPropertiesManager.getConfigurationKey() Returns the key of the configuration whose properties are managed. |
ConfigurationKey |
AbstractConfigurationProperties.getKey() |
Methods in de.smartics.properties.spi.config.support that return types with arguments of type ConfigurationKey | |
---|---|
Collection<ConfigurationKey> |
InMemoryConfigurationRepositoryManagement.getKeys() |
Collection<ConfigurationKey> |
AbstractConfigurationPropertiesFactory.getRegisteredConfigurationKeys() |
Collection<ConfigurationKey> |
AbstractConfigurationPropertiesFactory.matrialize() |
Constructors in de.smartics.properties.spi.config.support with parameters of type ConfigurationKey | |
---|---|
AbstractConfigurationProperties(ConfigurationKey key, PropertyDescriptorRegistry registry) Default constructor. |
|
AbstractConfigurationPropertiesManagement(ConfigurationKey key, PropertyDescriptorRegistry registry) Default constructor. |
|
AbstractInMemoryConfigurationProperties(ConfigurationKey key, PropertyDescriptorRegistry registry) Convenience constructor requiring that a properties file with the same name as the properties set class exists on the class path. |
|
AbstractInMemoryConfigurationProperties(ConfigurationKey key, PropertyDescriptorRegistry registry, boolean requiresDefaultOnClassPath) Default constructor requiring that a properties file with the same name as the properties set class exists on the class path. |
|
InMemoryPropertiesManager(ConfigurationKey configurationKey) Convenience constructor creating a UUID as source. |
|
InMemoryPropertiesManager(ConfigurationKey configurationKey, PropertyLocation sourceId) Default constructor. |
|
PropertiesHelper(ConfigurationKey key) Default constructor. |
|
PropertiesPropertyProvider(ConfigurationKey configurationKey, PropertyLocation sourceId, Properties properties) Default constructor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |