You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2021/11/09 11:02:11 UTC

[camel] 02/06: CAMEL-17178: Fix wrong jackson 2 HTTP links

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

aldettinger pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 30494c20e104ffdd2d347966f836d079f5f97d36
Author: aldettinger <al...@gmail.com>
AuthorDate: Tue Nov 9 09:32:59 2021 +0100

    CAMEL-17178: Fix wrong jackson 2 HTTP links
---
 components/camel-cbor/src/main/docs/cbor-dataformat.adoc          | 2 +-
 .../camel-jackson-avro/src/main/docs/avro-jackson-dataformat.adoc | 2 +-
 .../src/main/docs/protobuf-jackson-dataformat.adoc                | 2 +-
 .../apache/camel/component/jackson/AbstractJacksonDataFormat.java | 4 ++--
 .../camel-jacksonxml/src/main/docs/jacksonxml-dataformat.adoc     | 8 ++++----
 .../apache/camel/component/jacksonxml/JacksonXMLDataFormat.java   | 6 +++---
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/components/camel-cbor/src/main/docs/cbor-dataformat.adoc b/components/camel-cbor/src/main/docs/cbor-dataformat.adoc
index 56bd9ba..c1dd1a7 100644
--- a/components/camel-cbor/src/main/docs/cbor-dataformat.adoc
+++ b/components/camel-cbor/src/main/docs/cbor-dataformat.adoc
@@ -12,7 +12,7 @@ include::{cq-version}@camel-quarkus:ROOT:partial$reference/dataformats/cbor.adoc
 *Since Camel {since}*
 
 CBOR is a Data Format which uses the
-http://wiki.fasterxml.com/JacksonHome/[Jackson library] with the
+https://github.com/FasterXML/jackson/[Jackson library] with the
 https://github.com/FasterXML/jackson-dataformats-binary/tree/master/cbor[CBOR extension]
 to unmarshal a CBOR payload into Java objects or to marshal Java objects
 into a CBOR payload.
diff --git a/components/camel-jackson-avro/src/main/docs/avro-jackson-dataformat.adoc b/components/camel-jackson-avro/src/main/docs/avro-jackson-dataformat.adoc
index 30478b4..6b2394a 100644
--- a/components/camel-jackson-avro/src/main/docs/avro-jackson-dataformat.adoc
+++ b/components/camel-jackson-avro/src/main/docs/avro-jackson-dataformat.adoc
@@ -12,7 +12,7 @@ include::{cq-version}@camel-quarkus:ROOT:partial$reference/dataformats/avro-jack
 *Since Camel {since}*
 
 Jackson Avro is a Data Format which uses the
-http://wiki.fasterxml.com/JacksonHome/[Jackson library] with the https://github.com/FasterXML/jackson-dataformats-binary[Avro extension]
+https://github.com/FasterXML/jackson/[Jackson library] with the https://github.com/FasterXML/jackson-dataformats-binary[Avro extension]
 to unmarshal an Avro payload into Java objects or to marshal Java objects
 into an Avro payload.
 
diff --git a/components/camel-jackson-protobuf/src/main/docs/protobuf-jackson-dataformat.adoc b/components/camel-jackson-protobuf/src/main/docs/protobuf-jackson-dataformat.adoc
index 7b9db0c..b4d920f 100644
--- a/components/camel-jackson-protobuf/src/main/docs/protobuf-jackson-dataformat.adoc
+++ b/components/camel-jackson-protobuf/src/main/docs/protobuf-jackson-dataformat.adoc
@@ -12,7 +12,7 @@ include::{cq-version}@camel-quarkus:ROOT:partial$reference/dataformats/protobuf-
 *Since Camel {since}*
 
 Jackson Protobuf is a Data Format which uses the
-http://wiki.fasterxml.com/JacksonHome/[Jackson library] with the https://github.com/FasterXML/jackson-dataformats-binary[Protobuf extension]
+https://github.com/FasterXML/jackson/[Jackson library] with the https://github.com/FasterXML/jackson-dataformats-binary[Protobuf extension]
 to unmarshal a Protobuf payload into Java objects or to marshal Java objects
 into a Protobuf payload.
 
diff --git a/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java b/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
index e0e2b12..377b720 100644
--- a/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
+++ b/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/AbstractJacksonDataFormat.java
@@ -102,7 +102,7 @@ public abstract class AbstractJacksonDataFormat extends ServiceSupport
      *
      * @param unmarshalType the custom unmarshal type
      * @param jsonView      marker class to specify properties to be included during marshalling. See also
-     *                      http://wiki.fasterxml.com/JacksonJsonViews
+     *                      https://github.com/FasterXML/JacksonJsonViews
      */
     public AbstractJacksonDataFormat(Class<?> unmarshalType, Class<?> jsonView) {
         this.unmarshalType = unmarshalType;
@@ -125,7 +125,7 @@ public abstract class AbstractJacksonDataFormat extends ServiceSupport
      * @param mapper        the custom mapper
      * @param unmarshalType the custom unmarshal type
      * @param jsonView      marker class to specify properties to be included during marshalling. See also
-     *                      http://wiki.fasterxml.com/JacksonJsonViews
+     *                      https://github.com/FasterXML/JacksonJsonViews
      */
     public AbstractJacksonDataFormat(ObjectMapper mapper, Class<?> unmarshalType, Class<?> jsonView) {
         this.objectMapper = mapper;
diff --git a/components/camel-jacksonxml/src/main/docs/jacksonxml-dataformat.adoc b/components/camel-jacksonxml/src/main/docs/jacksonxml-dataformat.adoc
index 5b33d6f..f1dc23f 100644
--- a/components/camel-jacksonxml/src/main/docs/jacksonxml-dataformat.adoc
+++ b/components/camel-jacksonxml/src/main/docs/jacksonxml-dataformat.adoc
@@ -12,7 +12,7 @@ include::{cq-version}@camel-quarkus:ROOT:partial$reference/dataformats/jacksonxm
 *Since Camel {since}*
 
 Jackson XML is a Data Format which uses the
-http://wiki.fasterxml.com/JacksonHome/[Jackson library] with the
+https://github.com/FasterXML/jackson/[Jackson library] with the
 https://github.com/FasterXML/jackson-dataformat-xml[XMLMapper extension]
 to unmarshal an XML payload into Java objects or to marshal Java objects
 into an XML payload.
@@ -29,7 +29,7 @@ https://github.com/FasterXML/jackson-dataformat-xml/blob/master/README.md[JAXB's
 "Code first" approach].
 
 This data format relies on
-http://wiki.fasterxml.com/WoodstoxHome[Woodstox] (especially for
+https://github.com/FasterXML/WoodstoxHome[Woodstox] (especially for
 features like pretty printing), a fast and efficient XML processor.
 
 [source,java]
@@ -78,7 +78,7 @@ And then you can refer to this id in the route:
 
 When marshalling a POJO to XML you might want to exclude certain fields
 from the XML output. With Jackson you can
-use http://wiki.fasterxml.com/JacksonJsonViews[JSON views] to accomplish
+use https://github.com/FasterXML/JacksonJsonViews[JSON views] to accomplish
 this. First create one or more marker classes.
 
 Use the marker classes with the `@JsonView` annotation to
@@ -105,7 +105,7 @@ from("direct:inPojoAgeView").
   marshal(ageViewFormat);
 ---------------------------------------------------------------------------------------------------
 
-Directly specify your http://wiki.fasterxml.com/JacksonJsonViews[JSON
+Directly specify your https://github.com/FasterXML/JacksonJsonViews[JSON
 view] inside the Java DSL as:
 
 [source,java]
diff --git a/components/camel-jacksonxml/src/main/java/org/apache/camel/component/jacksonxml/JacksonXMLDataFormat.java b/components/camel-jacksonxml/src/main/java/org/apache/camel/component/jacksonxml/JacksonXMLDataFormat.java
index 594188e..4962ac7 100644
--- a/components/camel-jacksonxml/src/main/java/org/apache/camel/component/jacksonxml/JacksonXMLDataFormat.java
+++ b/components/camel-jacksonxml/src/main/java/org/apache/camel/component/jacksonxml/JacksonXMLDataFormat.java
@@ -102,7 +102,7 @@ public class JacksonXMLDataFormat extends ServiceSupport
      *
      * @param unmarshalType the custom unmarshal type
      * @param jsonView      marker class to specify properties to be included during marshalling. See also
-     *                      http://wiki.fasterxml.com/JacksonJsonViews
+     *                      https://github.com/FasterXML/JacksonJsonViews
      */
     public JacksonXMLDataFormat(Class<?> unmarshalType, Class<?> jsonView) {
         this(unmarshalType, jsonView, true);
@@ -113,7 +113,7 @@ public class JacksonXMLDataFormat extends ServiceSupport
      *
      * @param unmarshalType              the custom unmarshal type
      * @param jsonView                   marker class to specify properties to be included during marshalling. See also
-     *                                   http://wiki.fasterxml.com/JacksonJsonViews
+     *                                   https://github.com/FasterXML/JacksonJsonViews
      * @param enableJaxbAnnotationModule if it is true, will enable the JaxbAnnotationModule.
      */
     public JacksonXMLDataFormat(Class<?> unmarshalType, Class<?> jsonView, boolean enableJaxbAnnotationModule) {
@@ -138,7 +138,7 @@ public class JacksonXMLDataFormat extends ServiceSupport
      * @param mapper        the custom mapper
      * @param unmarshalType the custom unmarshal type
      * @param jsonView      marker class to specify properties to be included during marshalling. See also
-     *                      http://wiki.fasterxml.com/JacksonJsonViews
+     *                      https://github.com/FasterXML/JacksonJsonViews
      */
     public JacksonXMLDataFormat(XmlMapper mapper, Class<?> unmarshalType, Class<?> jsonView) {
         this.xmlMapper = mapper;