|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Property | |
---|---|
de.smartics.properties.api.config.domain | Provides domain objects for configuration. |
de.smartics.properties.impl.config.cache | Provides a ConfigurationPropertiesManagement implementation that provides a cache. |
de.smartics.properties.impl.config.ds | Provides a SerializableConfigurationPropertiesManagement implementation based on DataSource . |
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.support | Provides helpers for service provider to implement ConfigurationPropertiesFactory . |
Uses of Property in de.smartics.properties.api.config.domain |
---|
Subclasses of Property in de.smartics.properties.api.config.domain | |
---|---|
class |
ResolvedProperty A resolved property provides, in addition to a Property also the resolved and converted value. |
Methods in de.smartics.properties.api.config.domain that return Property | |
---|---|
Property |
DuplicatePropertyException.getCurrentProperty() Returns the currently active property. |
Property |
DuplicatePropertyException.getNewProperty() Returns the new encountered property with the same key. |
Property |
PropertyDefinition.getProperty() Returns the value and location information of the property. |
Property |
ConfigurationProperties.getProperty(PropertyDescriptor descriptor) Returns the property for the given descriptor. |
Property |
ConfigurationProperties.getProperty(PropertyDescriptor descriptor, Object defaultValue) Returns the property for the given descriptor, allowing to transparently provide a default value to be returned in case the property has not been set. |
Property |
ConfigurationProperties.getProperty(PropertyKey key) Returns the property for the given key. |
Property |
PropertyProvider.getProperty(String name) Returns the property with the given name . |
Property |
ConfigurationProperties.getProperty(String key) Returns the property for the given key. |
Property |
ConfigurationProperties.getProperty(String key, Object defaultValue) Returns the property for the given key, allowing to transparently provide a default value to be returned in case the property has not been set. |
Property |
PropertySource.removeProperty(String name) Removes a property making it unknown to the system. |
Property |
PropertySource.setProperty(Property property) Sets the property with the given name to the given value . |
Property |
ConfigurationPropertiesManagement.setProperty(PropertyKey key, String value) Sets the property value for the given key. |
Property |
ConfigurationPropertiesManagement.unsetProperty(PropertyKey key) Unsets the property value for the given key. |
Methods in de.smartics.properties.api.config.domain that return types with arguments of type Property | |
---|---|
List<Property> |
UnknownProperties.getProperties() Returns a reference to the list on unknown properties. |
Methods in de.smartics.properties.api.config.domain with parameters of type Property | |
---|---|
void |
UnknownProperties.add(Property property) Adds the unknown properties to the list. |
int |
Property.compareTo(Property o) |
void |
PropertyIndex.register(PropertyDescriptor descriptor, Property property) Registers the property descriptor and property instance to the index. |
Property |
PropertySource.setProperty(Property property) Sets the property with the given name to the given value . |
Constructors in de.smartics.properties.api.config.domain with parameters of type Property | |
---|---|
DuplicatePropertyException(ConfigurationKey key, Property currentProperty, Property newProperty) Default Constructor. |
|
PropertyDefinition(PropertyDescriptor descriptor, Property property) Default constructor. |
|
ResolvedProperty(Property plainProperty, String expression, Object resolvedValue) Copy constructor. |
Uses of Property in de.smartics.properties.impl.config.cache |
---|
Methods in de.smartics.properties.impl.config.cache that return Property | |
---|---|
Property |
AbstractCacheConfigurationPropertiesManagement.getProperty(PropertyDescriptor descriptor) |
Property |
AbstractCacheConfigurationPropertiesManagement.getProperty(PropertyDescriptor descriptor, Object defaultValue) |
Property |
AbstractCacheConfigurationPropertiesManagement.getProperty(PropertyKey key) |
Property |
AbstractCacheConfigurationPropertiesManagement.getProperty(String key) |
Property |
AbstractCacheConfigurationPropertiesManagement.getProperty(String key, Object defaultValue) |
Property |
AbstractCacheConfigurationPropertiesManagement.setProperty(PropertyKey key, String value) |
Property |
AbstractCacheConfigurationPropertiesManagement.unsetProperty(PropertyKey key) |
Uses of Property in de.smartics.properties.impl.config.ds |
---|
Methods in de.smartics.properties.impl.config.ds that return Property | |
---|---|
protected Property |
DataSourceConfigurationProperties.deletePropertyInStore(String name) |
protected Property |
DataSourceConfigurationProperties.getPropertyFromStore(String name) |
protected Property |
DataSourceConfigurationProperties.setPropertyToStore(String name, String value) |
Uses of Property in de.smartics.properties.spi.config.domain |
---|
Methods in de.smartics.properties.spi.config.domain that return Property | |
---|---|
Property |
ConfigurationPropertiesProxy.getProperty(PropertyDescriptor descriptor) |
Property |
ConfigurationPropertiesProxy.getProperty(PropertyDescriptor descriptor, Object defaultValue) |
Property |
ConfigurationPropertiesProxy.getProperty(PropertyKey key) |
Property |
ConfigurationPropertiesProxy.getProperty(String key) |
Property |
ConfigurationPropertiesProxy.getProperty(String key, Object defaultValue) |
Property |
ConfigurationPropertiesManagementProxy.setProperty(PropertyKey key, String value) |
Property |
ConfigurationPropertiesManagementProxy.unsetProperty(PropertyKey key) |
Uses of Property in de.smartics.properties.spi.config.ds |
---|
Methods in de.smartics.properties.spi.config.ds that return Property | |
---|---|
Property |
PropertiesStore.getProperty(String name) |
Property |
PropertiesDataSourceAccessor.getProperty(String name) Reads the property with the given name from the data source. |
Property |
DataSourceConfigurationPropertyProvider.getProperty(String name) |
Methods in de.smartics.properties.spi.config.ds that return types with arguments of type Property | |
---|---|
Iterator<Property> |
DsPropertyCollection.iterator() |
Uses of Property in de.smartics.properties.spi.config.support |
---|
Methods in de.smartics.properties.spi.config.support that return Property | |
---|---|
protected Property |
AbstractInMemoryConfigurationProperties.deletePropertyInStore(String name) |
protected abstract Property |
AbstractConfigurationPropertiesManagement.deletePropertyInStore(String name) Deletes the property with the given name. |
Property |
AbstractConfigurationProperties.getProperty(PropertyDescriptor descriptor) |
Property |
ConfigurationPropertiesManagementWithDefaults.getProperty(PropertyDescriptor descriptor, Object defaultValue) |
Property |
AbstractConfigurationPropertiesManagement.getProperty(PropertyDescriptor descriptor, Object defaultValue) |
Property |
AbstractConfigurationProperties.getProperty(PropertyKey key) |
Property |
PropertiesPropertyProvider.getProperty(String name) |
Property |
InMemoryPropertiesManager.getProperty(String name) |
Property |
AbstractConfigurationProperties.getProperty(String key) |
Property |
ConfigurationPropertiesManagementWithDefaults.getProperty(String key, Object defaultValue) |
Property |
AbstractConfigurationPropertiesManagement.getProperty(String key, Object defaultValue) |
Property |
AbstractConfigurationProperties.getProperty(String key, Object defaultValue) |
protected Property |
AbstractInMemoryConfigurationProperties.getPropertyFromStore(String name) |
protected abstract Property |
AbstractConfigurationPropertiesManagement.getPropertyFromStore(String name) Fetches the property from the store by the given name. |
Property |
InMemoryPropertiesManager.removeProperty(String name) |
Property |
InMemoryPropertiesManager.setProperty(Property property) |
Property |
ConfigurationPropertiesManagementWithDefaults.setProperty(PropertyKey key, String value) Sets the property value for the given key. |
Property |
AbstractConfigurationPropertiesManagement.setProperty(PropertyKey key, String value) |
Property |
AbstractInMemoryConfigurationProperties.setPropertyToStore(String key, String value) |
protected abstract Property |
AbstractConfigurationPropertiesManagement.setPropertyToStore(String name, String value) Sets the property to the given value. |
Property |
ConfigurationPropertiesManagementWithDefaults.unsetProperty(PropertyKey key) Unsets the property value for the given key. |
Property |
AbstractConfigurationPropertiesManagement.unsetProperty(PropertyKey key) |
Methods in de.smartics.properties.spi.config.support that return types with arguments of type Property | |
---|---|
Iterator<Property> |
PropertiesPropertyCollection.iterator() |
Iterator<Property> |
NativePropertyCollection.iterator() |
Iterator<Property> |
MappedPropertyCollection.iterator() |
Methods in de.smartics.properties.spi.config.support with parameters of type Property | |
---|---|
Property |
InMemoryPropertiesManager.setProperty(Property property) |
Constructor parameters in de.smartics.properties.spi.config.support with type arguments of type Property | |
---|---|
NativePropertyCollection(Collection<Map<String,Property>> properties) Constructor to add properties via a collection. |
|
NativePropertyCollection(Map<String,Property> properties) Constructor to add properties. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |