This is an automated email from the ASF dual-hosted git repository.

anatole pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-tamaya-extensions.git.


    from 224c714  Merge pull request #29 from acoburn/inject_api_changes
     new ae05ac5  TAMAYA-378 Improved injection API for more transparent key 
resolution.
     new 2a57b18  Fixed several quality issues.
     new 46a2893  Fixed several quality issues.
     new 0179bb5  Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/incubator-tamaya-extensions
     new 75cfa3b  Merged latest updates.
     new 6846463  Fixed test.
     new 6c9a9ff  Fixed some checkstyle issues.

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../tamaya/collections/CollectionConverter.java    |  45 +++---
 .../collections/ConcurrentHashMapConverter.java    |   3 -
 .../tamaya/collections/HashSetConverter.java       |   3 -
 .../apache/tamaya/collections/ItemTokenizer.java   |   6 +-
 .../tamaya/collections/LinkedListConverter.java    |   3 -
 .../apache/tamaya/collections/ListConverter.java   |   7 +-
 .../apache/tamaya/collections/MapConverter.java    |   6 +-
 .../apache/tamaya/collections/SetConverter.java    |   4 +-
 .../tamaya/collections/SortedSetConverter.java     |   2 -
 .../tamaya/collections/TreeMapConverter.java       |   3 -
 .../tamaya/collections/TreeSetConverter.java       |   3 -
 .../collections/CollectionsTypedReadOnlyTests.java |   3 +-
 .../consul/AbstractConsulPropertySource.java       |   4 +-
 .../apache/tamaya/consul/ConsulBackendConfig.java  |   4 -
 .../apache/tamaya/consul/ConsulPropertySource.java |  12 --
 .../org/apache/tamaya/consul/ConsulWriteTest.java  |   4 +-
 .../java/org/apache/tamaya/etcd/EtcdAccessor.java  |   2 +-
 .../org/apache/tamaya/etcd/EtcdBackendConfig.java  |  36 ++---
 .../org/apache/tamaya/etcd/EtcdPropertySource.java |   2 -
 .../apache/tamaya/events/ConfigEventManager.java   |   2 +-
 .../tamaya/events/ConfigurationChangeBuilder.java  |   1 -
 .../internal/DefaultConfigChangeObserver.java      |   1 -
 .../internal/DefaultConfigEventManagerSpi.java     |  12 +-
 .../events/ConfigurationChangeBuilderTest.java     |   8 +-
 .../apache/tamaya/events/RandomPropertySource.java |   2 +-
 .../events/folderobserver/FileChangeListener.java  |   3 +-
 .../ObservingPropertySourceProvider.java           |   4 +-
 .../format/BaseFormatPropertySourceProvider.java   |   1 -
 .../apache/tamaya/format/ConfigurationFormats.java |   1 -
 .../MappedConfigurationDataPropertySource.java     |   1 -
 .../format/formats/IniConfigurationFormat.java     |  11 +-
 .../format/FormatPropertySourceProviderTest.java   |   2 +-
 .../MappedConfigurationDataPropertySourceTest.java |   4 -
 .../org/apache/tamaya/json/JSONDataBuilder.java    |   4 +-
 .../org/apache/tamaya/json/JSONPropertySource.java |   9 +-
 .../java/org/apache/tamaya/yaml/YAMLFormat.java    |  47 +++---
 .../org/apache/tamaya/yaml/YAMLPropertySource.java |   3 +-
 .../org/apache/tamaya/yaml/YAMLFormatTest.java     |   3 +-
 .../functions/ConfigWrappingPropertySource.java    |   4 +-
 .../tamaya/functions/EnrichedPropertySource.java   |   3 +-
 .../tamaya/functions/MappedPropertySource.java     |   5 +-
 .../functions/ValueMappedPropertySource.java       |   3 +-
 .../functions/CombinedConfigurationTest.java       |   8 +-
 .../functions/EnrichedConfigurationTest.java       |  14 +-
 .../functions/EnrichedPropertySourceTest.java      |   2 -
 .../functions/FilteredPropertySourceTest.java      |   2 +-
 .../tamaya/functions/InMemoryPropertySource.java   |   4 +-
 .../tamaya/functions/MappedConfigurationTest.java  |   2 +-
 .../tamaya/functions/MappedPropertySourceTest.java |   1 -
 .../functions/PropertySourceFunctionsTest.java     |   6 +-
 .../functions/ValueMappedPropertySourceTest.java   |   1 -
 .../hazelcast/AbstractHazelcastPropertySource.java |  16 +--
 .../hazelcast/HazelcastPropertySourceTest.java     |   1 -
 .../apache/tamaya/cdi/CDIAwareServiceContext.java  |   2 +-
 .../apache/tamaya/cdi/ConfigurationProducer.java   |  21 ++-
 .../org/apache/tamaya/cdi/DefaultDynamicValue.java |   4 +-
 .../tamaya/cdi/ServiceLoaderServiceContext.java    |  13 +-
 .../tamaya/cdi/TamayaCDIInjectionExtension.java    |  26 +++-
 .../tamaya/cdi/TamayaSEInjectionExtension.java     |   4 +-
 .../apache/tamaya/cdi/CDIConfiguredTypeTest.java   |   2 -
 .../org/apache/tamaya/cdi/ConfiguredBTest.java     |   1 -
 .../tamaya/cdi/ConfiguredVetoExtensionTest.java    |   3 -
 .../apache/tamaya/cdi/cfg/TestPropertySource.java  |   7 +-
 .../java/org/apache/tamaya/inject/api/Config.java  |  39 +++--
 .../apache/tamaya/inject/spi/AutoKeyResolver.java  |  24 ++--
 .../apache/tamaya/inject/spi/BaseDynamicValue.java |   2 +-
 .../apache/tamaya/inject/spi/InjectionUtils.java   |   6 +-
 .../tamaya/inject/spi/InjectionUtilsTest.java      |  35 ++++-
 .../internal/ConfigTemplateInvocationHandler.java  |   1 -
 .../inject/internal/ConfiguredFieldImpl.java       |   1 -
 .../inject/internal/ConfiguredSetterMethod.java    |  11 +-
 .../tamaya/inject/internal/ConfiguredTypeImpl.java |   9 +-
 .../internal/DefaultConfigurationInjector.java     |   2 +-
 .../inject/internal/DefaultDynamicValue.java       |  33 +++--
 .../tamaya/inject/internal/InjectionHelper.java    |   3 +-
 .../java/annottext/NonAnnotatedConfigBean.java     |   9 --
 .../apache/tamaya/inject/TamayaInjectionTest.java  |  10 +-
 .../apache/tamaya/inject/TestPropertySource.java   |   7 +-
 .../inject/internal/DefaultDynamicValueTest.java   |   6 +-
 .../org/apache/tamaya/jndi/JNDIPropertySource.java |   2 +-
 .../apache/tamaya/jndi/JNDIPropertySourceTest.java |   4 +-
 .../tamaya/microprofile/MicroprofileAdapter.java   |   2 +-
 .../tamaya/microprofile/MicroprofileConfig.java    |  27 ++--
 .../microprofile/MicroprofileConfigBuilder.java    |  77 +++++-----
 .../MicroprofileConfigProviderResolver.java        |  12 +-
 .../tamaya/microprofile/MicroprofileConverter.java |   1 +
 .../tamaya/microprofile/TamayaConfiguration.java   |   4 +-
 .../microprofile/TamayaPropertyConverter.java      |   1 +
 .../microprofile/cdi/BridgingConfigBean.java       |   4 +-
 .../tamaya/microprofile/cdi/ConfiguredType.java    |  11 +-
 .../cdi/MicroprofileConfigurationProducer.java     |  42 +++---
 .../microprofile/converter/ProviderConverter.java  |  36 +++--
 .../MicroprofileConfigBuilderTest.java             |   1 -
 .../MicroprofileConfigProviderResolverTest.java    |   1 -
 .../microprofile/MicroprofileConfigTest.java       |   3 -
 .../microprofile/MicroprofileConverterTest.java    |   1 -
 .../tamaya/mutableconfig/MutableConfiguration.java |   1 -
 .../MutableConfigurationProvider.java              |   1 -
 .../internal/DefaultMutableConfiguration.java      |  12 --
 .../MutablePropertiesPropertySource.java           |  31 ++--
 .../MutableXmlPropertiesPropertySource.java        |  36 +++--
 .../tamaya/optional/OptionalConfiguration.java     |   5 +-
 .../java/org/apache/tamaya/osgi/Activator.java     |   8 +-
 .../main/java/org/apache/tamaya/osgi/Backups.java  |  50 ++++---
 .../java/org/apache/tamaya/osgi/ConfigChanger.java |  20 +--
 .../java/org/apache/tamaya/osgi/ConfigHistory.java | 116 +++++++++------
 .../org/apache/tamaya/osgi/TamayaConfigPlugin.java | 159 +++++++++++----------
 .../tamaya/osgi/commands/ConfigCommands.java       |   4 +-
 .../org/apache/tamaya/osgi/AbstractOSGITest.java   |   1 -
 .../apache/tamaya/gogo/shell/BackupCommands.java   |   3 +
 .../apache/tamaya/gogo/shell/ConfigCommands.java   |   5 +-
 .../apache/tamaya/gogo/shell/HistoryCommands.java  |   5 +-
 .../apache/tamaya/gogo/shell/SettingsCommands.java |   3 +
 .../apache/tamaya/gogo/shell/AbstractOSGITest.java |   4 -
 .../tamaya/gogo/shell/BackupCommandsTest.java      |   1 -
 .../tamaya/gogo/shell/ConfigCommandsTest.java      |   2 -
 .../tamaya/gogo/shell/HistoryCommandsTest.java     |   2 -
 .../tamaya/gogo/shell/SettingsCommandsTest.java    |   1 -
 .../apache/tamaya/osgi/injection/Activator.java    |   9 +-
 .../injection/OSGIConfigAdminPropertySource.java   |   2 +-
 .../osgi/injection/OSGIConfigurationInjector.java  |  14 +-
 .../tamaya/osgi/injection/TamayaOSGIInjector.java  |   3 +-
 .../tamaya/osgi/injection/AbstractOSGITest.java    |   1 -
 .../karaf/shell/ApplyTamayaConfigCommand.java      |   4 +-
 .../tamaya/karaf/shell/BackupCreateCommand.java    |   3 +
 .../tamaya/karaf/shell/BackupDeleteCommand.java    |   3 +
 .../tamaya/karaf/shell/BackupListCommand.java      |   3 +
 .../tamaya/karaf/shell/BackupRestoreCommand.java   |   3 +
 .../tamaya/karaf/shell/DefaultEnableCommand.java   |   6 +
 .../tamaya/karaf/shell/DefaultEnabledCommand.java  |   3 +
 .../tamaya/karaf/shell/GetPolicyCommand.java       |   3 +
 .../karaf/shell/HistoryDeleteAllCommand.java       |   4 +-
 .../tamaya/karaf/shell/HistoryDeleteCommand.java   |   7 +-
 .../tamaya/karaf/shell/HistoryGetCommand.java      |  12 +-
 .../tamaya/karaf/shell/HistoryMaxsizeCommand.java  |   6 +-
 .../karaf/shell/HistoryMaxsizeSetCommand.java      |   3 +
 .../org/apache/tamaya/karaf/shell/InfoCommand.java |   3 +
 .../tamaya/karaf/shell/OSGIConfigCommand.java      |   3 +
 .../tamaya/karaf/shell/PolicyGetCommand.java       |   3 +
 .../tamaya/karaf/shell/PolicySetCommand.java       |   6 +
 .../karaf/shell/PropagateUpdatesCommand.java       |   3 +
 .../karaf/shell/PropagateUpdatesSetCommand.java    |   3 +
 .../tamaya/karaf/shell/PropertyGetCommand.java     |   3 +
 .../tamaya/karaf/shell/PropertySourceCommand.java  |   3 +
 .../tamaya/karaf/shell/PropertySourcesCommand.java |   6 +-
 .../tamaya/karaf/shell/TamayaConfigCommand.java    |   3 +
 .../org/apache/tamaya/osgi/updater/Activator.java  |   4 +-
 .../apache/tamaya/osgi/updater/EventListener.java  |   3 +-
 .../tamaya/osgi/updater/AbstractOSGITest.java      |   2 -
 .../internal/DefaultExpressionEvaluator.java       |   8 +-
 .../AbstractPathPropertySourceProvider.java        |   9 +-
 .../resource/internal/ClasspathCollector.java      |   4 +-
 .../tamaya/resource/internal/VfsSupport.java       |  16 +--
 .../resource/internal/ClasspathCollectorTest.java  |   2 -
 .../internal/PathBasedPropertySourceProvider.java  |   5 +-
 .../spring/SpringConfigInjectionPostProcessor.java |   6 +-
 156 files changed, 808 insertions(+), 699 deletions(-)

Reply via email to