org.apache.tuweni.config.Configuration |
Represents collection of configuration properties, optionally validated against a schema. |
org.apache.tuweni.config.ConfigurationError |
Provides details regarding an error in the configuration. |
org.apache.tuweni.config.ConfigurationErrors |
Factory methods for collections of ConfigurationError. |
org.apache.tuweni.config.ConfigurationValidator |
A validator for a configuration. Validators of this type are invoked during verification after all property validators. However, errors returned by property validators do not prevent this validator being evaluated, so properties of the configuration may be missing or invalid. |
org.apache.tuweni.config.DocumentPosition |
A position in an input document. |
org.apache.tuweni.config.InvalidConfigurationPropertyTypeException |
An exception thrown when an invalid type is encountered. |
org.apache.tuweni.config.NoConfigurationPropertyException |
An exception thrown when a requested configuration property is not found. This exception can be avoided by using a schema that provides a default value or asserts that a value has been provided in the configuration. |
org.apache.tuweni.config.PropertyValidator |
A validator associated with a specific configuration property. |
org.apache.tuweni.config.Schema |
A schema for a configuration, providing default values and validation rules. |
org.apache.tuweni.config.SchemaBuilder |
This interface allows customers to determine a schema to associate with a configuration to validate the entries read from configuration files, and provide default values if no value is present in the configuration file. |