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 3820b1b7c45ff072042c3f4ccda075722cee1763 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Jan 12 12:31:16 2023 +0100 CAMEL-18889 - Remove camel-rabbitmq - Regen Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../org/apache/camel/catalog/models.properties | 1 + .../apache/camel/catalog/schemas/camel-spring.xsd | 132 +++++++++++++++++++++ .../services/org/apache/camel/model.properties | 1 + .../camel-component-known-dependencies.properties | 1 - 4 files changed, 134 insertions(+), 1 deletion(-) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models.properties b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models.properties index 7f5cc385cac..183d96a99d2 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models.properties +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models.properties @@ -219,6 +219,7 @@ wireTap xmlSecurity xpath xquery +xstream xtokenize yaml zipDeflater 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 89fe8582557..8426fcf3057 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 @@ -1965,6 +1965,14 @@ Evaluates an XQuery expressions against an XML payload. </xs:annotation> </xs:element> + <xs:element name="xstream" type="tns:xStreamDataFormat"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Deprecated: Marshal and unmarshal POJOs to/from XML using XStream library. + ]]></xs:documentation> + </xs:annotation> + </xs:element> + <xs:element name="xtokenize" type="tns:xmlTokenizerExpression"> <xs:annotation> <xs:documentation xml:lang="en"><![CDATA[ @@ -8195,6 +8203,8 @@ it reaches the end when Camel is shut down. Default value: false <xs:element ref="tns:xmlSecurity"/> + <xs:element ref="tns:xstream"/> + <xs:element ref="tns:pgp"/> <xs:element ref="tns:yaml"/> @@ -11220,6 +11230,122 @@ the EncryptedKey structure or not. Default value: true </xs:complexType> + <xs:complexType name="xStreamDataFormat"> + + <xs:complexContent> + + <xs:extension base="tns:dataFormat"> + + <xs:sequence> + + <xs:element maxOccurs="unbounded" minOccurs="0" name="converters" type="tns:propertyDefinition"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +List of class names for using custom XStream converters. The classes must be of +type com.thoughtworks.xstream.converters.Converter. + ]]></xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element maxOccurs="unbounded" minOccurs="0" name="aliases" type="tns:propertyDefinition"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Alias a Class to a shorter name to be used in XML elements. + ]]></xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element maxOccurs="unbounded" minOccurs="0" name="omitFields" type="tns:propertyDefinition"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Prevents a field from being serialized. To omit a field you must always provide +the declaring type and not necessarily the type that is converted. Multiple +values can be separated by comma. + ]]></xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element maxOccurs="unbounded" minOccurs="0" name="implicitCollections" type="tns:propertyDefinition"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Adds a default implicit collection which is used for any unmapped XML tag. +Multiple values can be separated by comma. + ]]></xs:documentation> + </xs:annotation> + </xs:element> + + </xs:sequence> + + <xs:attribute name="permissions" type="xs:string"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Adds permissions that controls which Java packages and classes XStream is +allowed to use during unmarshal from xml/json to Java beans. A permission must +be configured either here or globally using a JVM system property. The +permission can be specified in a syntax where a plus sign is allow, and minus +sign is deny. Wildcards is supported by using . as prefix. For example to allow +com.foo and all subpackages then specify com.foo.. Multiple permissions can be +configured separated by comma, such as com.foo.,-com.foo.bar.MySecretBean. The +following default permission is always included: -,java.lang.,java.util. unless +its overridden by specifying a JVM system property with they key +org.apache.camel.xstream.permissions. + ]]></xs:documentation> + </xs:annotation> + </xs:attribute> + + <xs:attribute name="encoding" type="xs:string"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Sets the encoding to use. + ]]></xs:documentation> + </xs:annotation> + </xs:attribute> + + <xs:attribute name="driver" type="xs:string"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +To use a custom XStream driver. The instance must be of type +com.thoughtworks.xstream.io.HierarchicalStreamDriver. + ]]></xs:documentation> + </xs:annotation> + </xs:attribute> + + <xs:attribute name="driverRef" type="xs:string"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +To refer to a custom XStream driver to lookup in the registry. The instance must +be of type com.thoughtworks.xstream.io.HierarchicalStreamDriver. + ]]></xs:documentation> + </xs:annotation> + </xs:attribute> + + <xs:attribute name="mode" type="xs:string"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Mode for dealing with duplicate references The possible values are: +NO_REFERENCES ID_REFERENCES XPATH_RELATIVE_REFERENCES XPATH_ABSOLUTE_REFERENCES +SINGLE_NODE_XPATH_RELATIVE_REFERENCES SINGLE_NODE_XPATH_ABSOLUTE_REFERENCES. + ]]></xs:documentation> + </xs:annotation> + </xs:attribute> + + <xs:attribute name="contentTypeHeader" type="xs:string"> + <xs:annotation> + <xs:documentation xml:lang="en"><![CDATA[ +Whether the data format should set the Content-Type header with the type from +the data format. For example application/xml for data formats marshalling to +XML, or application/json for data formats marshalling to JSON. Default value: +true + ]]></xs:documentation> + </xs:annotation> + </xs:attribute> + + </xs:extension> + + </xs:complexContent> + + </xs:complexType> + <xs:complexType name="pgpDataFormat"> <xs:complexContent> @@ -16776,6 +16902,8 @@ Sets a reference to use for lookup the policy in the registry. <xs:element ref="tns:xmlSecurity"/> + <xs:element ref="tns:xstream"/> + <xs:element ref="tns:pgp"/> <xs:element ref="tns:yaml"/> @@ -18043,6 +18171,8 @@ Set a reference to a custom Expression to use. <xs:element ref="tns:xmlSecurity"/> + <xs:element ref="tns:xstream"/> + <xs:element ref="tns:pgp"/> <xs:element ref="tns:yaml"/> @@ -20165,6 +20295,8 @@ To configure a special tag for the operations within this rest definition. <xs:element ref="tns:xmlSecurity"/> + <xs:element ref="tns:xstream"/> + <xs:element ref="tns:pgp"/> <xs:element ref="tns:yaml"/> diff --git a/core/camel-core-model/src/generated/resources/META-INF/services/org/apache/camel/model.properties b/core/camel-core-model/src/generated/resources/META-INF/services/org/apache/camel/model.properties index 28f24db97e3..d6fe889aad1 100644 --- a/core/camel-core-model/src/generated/resources/META-INF/services/org/apache/camel/model.properties +++ b/core/camel-core-model/src/generated/resources/META-INF/services/org/apache/camel/model.properties @@ -220,6 +220,7 @@ wireTap xmlSecurity xpath xquery +xstream xtokenize yaml zipDeflater diff --git a/dsl/camel-kamelet-main/src/generated/resources/camel-component-known-dependencies.properties b/dsl/camel-kamelet-main/src/generated/resources/camel-component-known-dependencies.properties index 6ed0fc7c847..797a053033c 100644 --- a/dsl/camel-kamelet-main/src/generated/resources/camel-component-known-dependencies.properties +++ b/dsl/camel-kamelet-main/src/generated/resources/camel-component-known-dependencies.properties @@ -267,7 +267,6 @@ org.apache.camel.component.pubnub.PubNubComponent=camel:pubnub org.apache.camel.component.pulsar.PulsarComponent=camel:pulsar org.apache.camel.component.quartz.QuartzComponent=camel:quartz org.apache.camel.component.quickfixj.QuickfixjComponent=camel:quickfix -org.apache.camel.component.rabbitmq.RabbitMQComponent=camel:rabbitmq org.apache.camel.component.reactive.streams.ReactiveStreamsComponent=camel:reactive-streams org.apache.camel.component.redis.RedisComponent=camel:spring-redis org.apache.camel.component.ref.RefComponent=camel:ref