This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch CAMEL-13870
in repository https://gitbox.apache.org/repos/asf/camel.git.
from abc454c CAMEL-13870: Fast property configuration of Camel endpoints.
Work in progress.
new bd9a305 CAMEL-13870: Fast property configuration of Camel endpoints.
Work in progress.
new 96d6f7f CAMEL-13870: Fast property configuration of Camel endpoints.
Work in progress.
new 4249ce8 CAMEL-13870: Fast property configuration of Camel endpoints.
Work in progress.
The 3 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:
.../apache/camel/component/log/LogComponent.java | 10 +-
.../org/apache/camel/ExtendedCamelContext.java | 6 +
.../org/apache/camel/spi/BeanIntrospection.java | 190 ++++++++++++++++++
.../camel/impl/engine/AbstractCamelContext.java | 8 +
.../impl/engine/CamelPostProcessorHelper.java | 5 +-
.../impl/engine/DefaultBeanIntrospection.java | 212 +++++++++++++++++++++
.../apache/camel/model/LoadBalancerDefinition.java | 1 -
.../cloud/ServiceCallExpressionConfiguration.java | 3 +-
.../ServiceCallServiceChooserConfiguration.java | 3 +-
.../ServiceCallServiceDiscoveryConfiguration.java | 3 +-
.../ServiceCallServiceFilterConfiguration.java | 3 +-
...erviceCallServiceLoadBalancerConfiguration.java | 3 +-
.../camel/model/language/ExpressionDefinition.java | 4 +-
.../reifier/dataformat/DataFormatReifier.java | 6 +-
.../camel/reifier/rest/RestBindingReifier.java | 16 +-
.../component/ApiMethodPropertiesHelperTest.java | 4 +-
.../DefaultComponentVerifierExtension.java | 7 +-
.../org/apache/camel/support/DefaultComponent.java | 7 +-
.../org/apache/camel/support/DefaultEndpoint.java | 3 +-
.../org/apache/camel/support/EndpointHelper.java | 3 +-
.../apache/camel/support/IntrospectionSupport.java | 3 +
.../camel/support/PropertyBindingSupport.java | 40 ++--
.../camel/support/ScheduledPollConsumer.java | 3 +-
.../camel/support/ScheduledPollEndpoint.java | 6 +-
.../camel/support/builder/ExpressionBuilder.java | 4 +-
.../support/component/AbstractApiComponent.java | 4 +-
.../support/component/AbstractApiEndpoint.java | 5 +-
.../component/ApiMethodPropertiesHelper.java | 14 +-
.../org/apache/camel/support/jndi/JndiContext.java | 1 +
.../support/management/MBeanInfoAssembler.java | 1 +
30 files changed, 496 insertions(+), 82 deletions(-)
create mode 100644
core/camel-api/src/main/java/org/apache/camel/spi/BeanIntrospection.java
create mode 100644
core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultBeanIntrospection.java