This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0f703ff8449dee0eaa6354b14637251a270d1995 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Jun 28 15:03:30 2021 +0200 Sync deps and regen --- camel-dependencies/pom.xml | 2 +- .../apache/camel/catalog/schemas/camel-spring.xsd | 81 ++++------------------ 2 files changed, 14 insertions(+), 69 deletions(-) diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml index f7b392b..7c9e200 100644 --- a/camel-dependencies/pom.xml +++ b/camel-dependencies/pom.xml @@ -52,7 +52,7 @@ <arquillian-version>1.6.0.Final</arquillian-version> <arquillian-weld-embedded-version>2.0.0.Final</arquillian-weld-embedded-version> <asm-version>8.0.1</asm-version> - <aspectj-version>1.9.6</aspectj-version> + <aspectj-version>1.9.7</aspectj-version> <assertj-version>3.20.2</assertj-version> <asterisk-java-version>3.12.0</asterisk-java-version> <atlasmap-version>2.2.2</atlasmap-version> diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd index 5525833..715f21e 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd @@ -401,7 +401,7 @@ null <xs:element name="exchangeProperty" type="tns:exchangePropertyExpression"> <xs:annotation> <xs:documentation xml:lang="en"><![CDATA[ -Get values of named Camel Exchange properties. +Get the value of named Camel Exchange property. ]]></xs:documentation> </xs:annotation> </xs:element> @@ -556,7 +556,7 @@ Rest HEAD command <xs:element name="header" type="tns:headerExpression"> <xs:annotation> <xs:documentation xml:lang="en"><![CDATA[ -Get values of Camel Message headers. +Get the value of the named Camel Message header. ]]></xs:documentation> </xs:annotation> </xs:element> @@ -1716,7 +1716,7 @@ Recipient List or Dynamic Router EIP instead. <xs:element name="tokenize" type="tns:tokenizerExpression"> <xs:annotation> <xs:documentation xml:lang="en"><![CDATA[ -Tokenize text payloads using delimiter patterns. +Tokenize text payloads using the specified delimiter patterns. ]]></xs:documentation> </xs:annotation> </xs:element> @@ -3180,25 +3180,11 @@ org.apache.camel.processor.aggregate.MemoryAggregationRepository. <xs:attribute name="strategyRef" type="xs:string"> <xs:annotation> <xs:documentation xml:lang="en"><![CDATA[ -A reference to lookup the AggregationStrategy in the Registry. The value can -either refer to a bean to lookup, or to lookup a singleton bean by its type, or -to create a new bean: Lookup bean - This is the default behavior to lookup an -existing bean by the bean id (value) reference by type - Values can refer to -singleton beans by their type in the registry by prefixing with #type: syntax, -eg #type:com.foo.MyClassType reference new class - Values can refer to creating -new beans by their class name by prefixing with #class, eg -#class:com.foo.MyClassType. The class is created using a default no-arg -constructor, however if you need to create the instance via a factory method -then you specify the method as shown: -#class:com.foo.MyClassType#myFactoryMethod. And if the factory method requires -parameters they can be specified as follows: -#class:com.foo.MyClassType#myFactoryMethod('Hello World', 5, true). Or if you -need to create the instance via constructor parameters then you can specify the -parameters as shown: #class:com.foo.MyClass('Hello World', 5, true). Configuring -an AggregationStrategy is required, and is used to merge the incoming Exchange -with the existing already merged exchanges. At first call the oldExchange -parameter is null. On subsequent invocations the oldExchange contains the merged -exchanges and newExchange is of course the new incoming Exchange. +A reference to lookup the AggregationStrategy in the Registry. Configuring an +AggregationStrategy is required, and is used to merge the incoming Exchange with +the existing already merged exchanges. At first call the oldExchange parameter +is null. On subsequent invocations the oldExchange contains the merged exchanges +and newExchange is of course the new incoming Exchange. ]]></xs:documentation> </xs:annotation> </xs:attribute> @@ -4513,20 +4499,7 @@ have both include and exclude header:pattern at the same time. <xs:documentation xml:lang="en"><![CDATA[ To use a custom AggregationStrategy instead of the default implementation. Notice you cannot use both custom aggregation strategy and configure data at the -same time. The value can either refer to a bean to lookup, or to lookup a -singleton bean by its type, or to create a new bean: Lookup bean - This is the -default behavior to lookup an existing bean by the bean id (value) reference by -type - Values can refer to singleton beans by their type in the registry by -prefixing with #type: syntax, eg #type:com.foo.MyClassType reference new class - -Values can refer to creating new beans by their class name by prefixing with -#class, eg #class:com.foo.MyClassType. The class is created using a default -no-arg constructor, however if you need to create the instance via a factory -method then you specify the method as shown: -#class:com.foo.MyClassType#myFactoryMethod. And if the factory method requires -parameters they can be specified as follows: -#class:com.foo.MyClassType#myFactoryMethod('Hello World', 5, true). Or if you -need to create the instance via constructor parameters then you can specify the -parameters as shown: #class:com.foo.MyClass('Hello World', 5, true). +same time. ]]></xs:documentation> </xs:annotation> </xs:attribute> @@ -4752,21 +4725,7 @@ producers. <xs:documentation xml:lang="en"><![CDATA[ Refers to an AggregationStrategy to be used to merge the reply from the external service, into a single outgoing message. By default Camel will use the reply -from the external service as outgoing message. The value can either refer to a -bean to lookup, or to lookup a singleton bean by its type, or to create a new -bean: Lookup bean - This is the default behavior to lookup an existing bean by -the bean id (value) reference by type - Values can refer to singleton beans by -their type in the registry by prefixing with #type: syntax, eg -#type:com.foo.MyClassType reference new class - Values can refer to creating new -beans by their class name by prefixing with #class, eg -#class:com.foo.MyClassType. The class is created using a default no-arg -constructor, however if you need to create the instance via a factory method -then you specify the method as shown: -#class:com.foo.MyClassType#myFactoryMethod. And if the factory method requires -parameters they can be specified as follows: -#class:com.foo.MyClassType#myFactoryMethod('Hello World', 5, true). Or if you -need to create the instance via constructor parameters then you can specify the -parameters as shown: #class:com.foo.MyClass('Hello World', 5, true). +from the external service as outgoing message. ]]></xs:documentation> </xs:annotation> </xs:attribute> @@ -5990,10 +5949,10 @@ streaming mode. Default value: false ]]></xs:documentation> </xs:annotation> </xs:attribute> - <xs:attribute name="unmarshalType" type="xs:string"> + <xs:attribute name="clazzName" type="xs:string"> <xs:annotation> <xs:documentation xml:lang="en"><![CDATA[ -Class to use when unmarshalling. +Name of class to use when unmarshalling. ]]></xs:documentation> </xs:annotation> </xs:attribute> @@ -9899,21 +9858,7 @@ therefore its recommended to use a timeout value. Default value: -1 <xs:documentation xml:lang="en"><![CDATA[ Refers to an AggregationStrategy to be used to merge the reply from the external service, into a single outgoing message. By default Camel will use the reply -from the external service as outgoing message. The value can either refer to a -bean to lookup, or to lookup a singleton bean by its type, or to create a new -bean: Lookup bean - This is the default behavior to lookup an existing bean by -the bean id (value) reference by type - Values can refer to singleton beans by -their type in the registry by prefixing with #type: syntax, eg -#type:com.foo.MyClassType reference new class - Values can refer to creating new -beans by their class name by prefixing with #class, eg -#class:com.foo.MyClassType. The class is created using a default no-arg -constructor, however if you need to create the instance via a factory method -then you specify the method as shown: -#class:com.foo.MyClassType#myFactoryMethod. And if the factory method requires -parameters they can be specified as follows: -#class:com.foo.MyClassType#myFactoryMethod('Hello World', 5, true). Or if you -need to create the instance via constructor parameters then you can specify the -parameters as shown: #class:com.foo.MyClass('Hello World', 5, true). +from the external service as outgoing message. ]]></xs:documentation> </xs:annotation> </xs:attribute>
