This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 3bfd2f2 CAMEL-17499: Renaming inconsistent data format names in model
3bfd2f2 is described below
commit 3bfd2f2011dfe836744f800ed968860de2ac9a6b
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Jan 18 16:22:16 2022 +0100
CAMEL-17499: Renaming inconsistent data format names in model
---
.../org/apache/camel/springboot/catalog/dataformats.properties | 2 +-
.../catalog/dataformats/{avro-jackson.json => avroJackson.json} | 2 +-
.../camel-jackson-avro-starter/src/main/docs/jackson-avro.json | 2 +-
.../jackson/avro/springboot/JacksonAvroDataFormatConfiguration.java | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats.properties
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats.properties
index 083e7d3..5a3d8ed 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats.properties
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats.properties
@@ -1,7 +1,7 @@
any23
asn1
avro
-avro-jackson
+avroJackson
barcode
base64
beanio
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avro-jackson.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
similarity index 99%
rename from
catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avro-jackson.json
rename to
catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
index 9a1061e..a431d33 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avro-jackson.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
@@ -1,7 +1,7 @@
{
"dataformat": {
"kind": "dataformat",
- "name": "avro-jackson",
+ "name": "avroJackson",
"title": "Avro Jackson",
"description": "Marshal POJOs to Avro and back using Jackson.",
"deprecated": false,
diff --git
a/components-starter/camel-jackson-avro-starter/src/main/docs/jackson-avro.json
b/components-starter/camel-jackson-avro-starter/src/main/docs/jackson-avro.json
index 6f7c18d..e16817e 100644
---
a/components-starter/camel-jackson-avro-starter/src/main/docs/jackson-avro.json
+++
b/components-starter/camel-jackson-avro-starter/src/main/docs/jackson-avro.json
@@ -74,7 +74,7 @@
{
"name": "camel.dataformat.avro-jackson.enabled",
"type": "java.lang.Boolean",
- "description": "Whether to enable auto configuration of the avro-jackson
data format. This is enabled by default.",
+ "description": "Whether to enable auto configuration of the avroJackson
data format. This is enabled by default.",
"sourceType":
"org.apache.camel.component.jackson.avro.springboot.JacksonAvroDataFormatConfiguration"
},
{
diff --git
a/components-starter/camel-jackson-avro-starter/src/main/java/org/apache/camel/component/jackson/avro/springboot/JacksonAvroDataFormatConfiguration.java
b/components-starter/camel-jackson-avro-starter/src/main/java/org/apache/camel/component/jackson/avro/springboot/JacksonAvroDataFormatConfiguration.java
index 99795be..dfad3c0 100644
---
a/components-starter/camel-jackson-avro-starter/src/main/java/org/apache/camel/component/jackson/avro/springboot/JacksonAvroDataFormatConfiguration.java
+++
b/components-starter/camel-jackson-avro-starter/src/main/java/org/apache/camel/component/jackson/avro/springboot/JacksonAvroDataFormatConfiguration.java
@@ -32,8 +32,8 @@ public class JacksonAvroDataFormatConfiguration
DataFormatConfigurationPropertiesCommon {
/**
- * Whether to enable auto configuration of the avro-jackson data format.
- * This is enabled by default.
+ * Whether to enable auto configuration of the avroJackson data format.
This
+ * is enabled by default.
*/
private Boolean enabled;
/**