Uses of Class
de.smartics.properties.api.core.app.PropertyRootException

Packages that use PropertyRootException
de.smartics.properties.api.config.app Provides application configurations to be used by clients to this library. 
de.smartics.properties.api.config.codes Provides codes for exception handling and logging. 
de.smartics.properties.api.config.domain Provides domain objects for configuration. 
de.smartics.properties.api.core.domain Provides property domain objects and exceptions. 
de.smartics.properties.api.core.security Provides security mechanisms to protect property values. 
de.smartics.properties.impl.config.cache Provides a ConfigurationPropertiesManagement implementation that provides a cache. 
de.smartics.properties.impl.config.jndi Provides a SerializableConfigurationPropertiesManagement implementation based on JNDI. 
de.smartics.properties.resource.domain Provides domain types dealing with resources. 
de.smartics.properties.resource.heap Provides resource access to a heap of property definitions. 
de.smartics.properties.resource.repository Provides the resource access abstraction on a repository. 
de.smartics.properties.spi.config.cache Provides an cache manager that provides Infinispan caches. 
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
de.smartics.properties.spi.config.transfer Provides services to transfer properties from a source to a target destination. 
 

Uses of PropertyRootException in de.smartics.properties.api.config.app
 

Subclasses of PropertyRootException in de.smartics.properties.api.config.app
 class ConfigurationFactoryException
          Signals factory problems on creating instances of ConfigurationPropertiesFactory.
 

Uses of PropertyRootException in de.smartics.properties.api.config.codes
 

Subclasses of PropertyRootException in de.smartics.properties.api.config.codes
 class ConfigurationRootException
          Base exception of the library for signaling an unspecific cause.
 

Uses of PropertyRootException in de.smartics.properties.api.config.domain
 

Subclasses of PropertyRootException in de.smartics.properties.api.config.domain
 class CompoundConfigurationException
          Signals multiple problems with a configuration.
 class ConfigurationException
          Signals problems with a configuration.
 class ConfigurationLoadingException
          Signals that configuration with the given key cannot be loaded.
 class ConfigurationNotFoundException
          Signals that configuration with the given key cannot be found as a resource.
 class ConfigurationValidationException
          Signals that the configuration is invalid or at least properties cannot be validated because there are no properties descriptors registered for them.
 class DuplicateConfigurationException
          Signals that a configuration with the given key has already been registered.
 class DuplicatePropertyDefinitionException
          Signals that a property descriptor has been encountered twice.
 class DuplicatePropertyException
          Signals that a property has been encountered twice.
 class MissingConfigurationException
          Signals that a configuration with the given key cannot be found.
 class PropertyStoreException
          Signals problems with accessing a property store.
 class PropertyValidationWithSourceException
          Signals that the value does not match the given constraints and provides information about the source location of the culprit.
 class PropertyValueConversionWithSourceException
          Signals that the value does not match the given constraints and provides information about the source location of the culprit.
 class PropertyValueResolveWithSourceException
          Signals that the value cannot be resolve and provides information about the source location of the culprit.
 class UnknownPropertyException
          Signals that a property is unknown.
 

Methods in de.smartics.properties.api.config.domain that throw PropertyRootException
 Object ConfigurationProperties.getPropertyAsType(PropertyDescriptor descriptor)
          Returns the yet not validated property for the given descriptor's key.
 ValidatedProperty ConfigurationProperties.getValidatedProperty(PropertyDescriptor descriptor, Object defaultValue)
          Returns the validated property for the given descriptor's key, allowing to transparently provide a default value to be returned in case the property has not been set.
 ValidatedProperty ConfigurationProperties.getValidatedProperty(PropertyKey key, Object defaultValue)
          Returns the validated property for the given key, allowing to transparently provide a default value to be returned in case the property has not been set.
 ValidatedProperty ConfigurationProperties.getValidatedProperty(String key, Object defaultValue)
          Returns the validated property for the given key, allowing to transparently provide a default value to be returned in case the property has not been set.
 

Uses of PropertyRootException in de.smartics.properties.api.core.domain
 

Subclasses of PropertyRootException in de.smartics.properties.api.core.domain
 class ConfigException
          Signals that a properties configuration cannot be parsed.
 class DuplicateDefaultKeyException
          Signals that a configuration key within a definitions configuration file is declared as default key twice.
 class DuplicatePropertyDeclarationException
          Signals that a property descriptor has been encountered twice.
 class DuplicatePropertyDeclarationsException
          Signals that a set of property descriptor has been encountered twice.
 class PropertyDescriptorException
          Base exception of the library for signaling an unspecific cause that is concerned with a specific property providing the property declaration information.
 class PropertyException
          Base exception of the library for signaling an unspecific cause that is concerned with a specific property.
 class PropertyValidationException
          Signals that the value does not match the given constraints.
 class PropertyValueConversionException
          Signals that a value cannot be converted to its native type.
 class PropertyValueResolveException
          Signals that the value cannot be resolve.
 class ReadOnlyPropertyException
          Signals that the a read-only property was requested to be updated.
 

Uses of PropertyRootException in de.smartics.properties.api.core.security
 

Subclasses of PropertyRootException in de.smartics.properties.api.core.security
 class SecurityException
          Signals that the security infrastructure cannot be created.
 

Uses of PropertyRootException in de.smartics.properties.impl.config.cache
 

Methods in de.smartics.properties.impl.config.cache that throw PropertyRootException
 Object AbstractCacheConfigurationPropertiesManagement.getPropertyAsType(PropertyDescriptor descriptor)
           
 

Uses of PropertyRootException in de.smartics.properties.impl.config.jndi
 

Subclasses of PropertyRootException in de.smartics.properties.impl.config.jndi
 class JndiPropertyStoreException
          Signals problems with accessing a JNDI property store.
 

Uses of PropertyRootException in de.smartics.properties.resource.domain
 

Subclasses of PropertyRootException in de.smartics.properties.resource.domain
 class ResourceException
          Signals problems dealing with a resource.
 

Uses of PropertyRootException in de.smartics.properties.resource.heap
 

Subclasses of PropertyRootException in de.smartics.properties.resource.heap
 class HeapException
          Signals problems accessing a heap.
 

Uses of PropertyRootException in de.smartics.properties.resource.repository
 

Subclasses of PropertyRootException in de.smartics.properties.resource.repository
 class RepositoryException
          Signals problems accessing a repository.
 

Uses of PropertyRootException in de.smartics.properties.spi.config.cache
 

Subclasses of PropertyRootException in de.smartics.properties.spi.config.cache
 class CacheException
          Signals problems with accessing a cache storing properties.
 

Uses of PropertyRootException in de.smartics.properties.spi.config.domain
 

Methods in de.smartics.properties.spi.config.domain that throw PropertyRootException
 Object ConfigurationPropertiesProxy.getPropertyAsType(PropertyDescriptor descriptor)
           
 

Uses of PropertyRootException in de.smartics.properties.spi.config.ds
 

Subclasses of PropertyRootException in de.smartics.properties.spi.config.ds
 class DataSourceException
          Signals problems with accessing a data source containing properties.
 

Uses of PropertyRootException in de.smartics.properties.spi.config.resolve
 

Subclasses of PropertyRootException in de.smartics.properties.spi.config.resolve
 class ResolveConfigurationException
          Signals problems resolving expression in a property value.
 

Uses of PropertyRootException in de.smartics.properties.spi.config.support
 

Methods in de.smartics.properties.spi.config.support that throw PropertyRootException
 Object ConfigurationPropertiesManagementWithDefaults.getPropertyAsType(PropertyDescriptor descriptor)
           
 Object AbstractConfigurationPropertiesManagement.getPropertyAsType(PropertyDescriptor descriptor)
           
 

Uses of PropertyRootException in de.smartics.properties.spi.config.transfer
 

Subclasses of PropertyRootException in de.smartics.properties.spi.config.transfer
 class TransferException
          Signals problems with transferring properties from source to target.
 



Copyright © 2012-2013 Kronseder & Reiner GmbH - smartics. All Rights Reserved.