You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/06/29 05:00:39 UTC

[camel-spring-boot] branch main updated: [create-pull-request] automated change (#585)

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 389fcd532f2 [create-pull-request] automated change (#585)
389fcd532f2 is described below

commit 389fcd532f2671fd6fc30bd7f3fc66d2a77de8e5
Author: github-actions[bot] <41...@users.noreply.github.com>
AuthorDate: Wed Jun 29 07:00:33 2022 +0200

    [create-pull-request] automated change (#585)
    
    Co-authored-by: oscerd <os...@users.noreply.github.com>
---
 .../src/main/docs/caffeine.json                    | 24 +++----
 .../src/main/docs/ehcache.json                     | 12 ++--
 .../camel-ignite-starter/src/main/docs/ignite.json | 84 +++++++++++-----------
 .../src/main/docs/infinispan-embedded.json         | 48 ++++++-------
 .../src/main/docs/infinispan.json                  | 48 ++++++-------
 .../src/main/docs/undertow.json                    | 12 ++--
 .../src/main/docs/xmlsecurity.json                 | 12 ++--
 7 files changed, 120 insertions(+), 120 deletions(-)

diff --git a/components-starter/camel-caffeine-starter/src/main/docs/caffeine.json b/components-starter/camel-caffeine-starter/src/main/docs/caffeine.json
index 8ca9ca765b6..e02b18ec5b8 100644
--- a/components-starter/camel-caffeine-starter/src/main/docs/caffeine.json
+++ b/components-starter/camel-caffeine-starter/src/main/docs/caffeine.json
@@ -11,6 +11,12 @@
       "sourceType": "org.apache.camel.component.caffeine.cache.springboot.CaffeineCacheComponentConfiguration",
       "sourceMethod": "getCustomizer()"
     },
+    {
+      "name": "camel.component.caffeine-cache.key",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.caffeine.cache.springboot.CaffeineCacheComponentConfiguration",
+      "sourceMethod": "getKey()"
+    },
     {
       "name": "camel.component.caffeine-loadcache",
       "type": "org.apache.camel.component.caffeine.load.springboot.CaffeineLoadCacheComponentConfiguration",
@@ -21,6 +27,12 @@
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": "org.apache.camel.component.caffeine.load.springboot.CaffeineLoadCacheComponentConfiguration",
       "sourceMethod": "getCustomizer()"
+    },
+    {
+      "name": "camel.component.caffeine-loadcache.key",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.caffeine.load.springboot.CaffeineLoadCacheComponentConfiguration",
+      "sourceMethod": "getKey()"
     }
   ],
   "properties": [
@@ -94,12 +106,6 @@
       "sourceType": "org.apache.camel.component.caffeine.cache.springboot.CaffeineCacheComponentConfiguration",
       "defaultValue": 10000
     },
-    {
-      "name": "camel.component.caffeine-cache.key",
-      "type": "java.lang.Object",
-      "description": "To configure the default action key. If a key is set in the message header, then the key from the header takes precedence. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.caffeine.cache.springboot.CaffeineCacheComponentConfiguration"
-    },
     {
       "name": "camel.component.caffeine-cache.key-type",
       "type": "java.lang.String",
@@ -215,12 +221,6 @@
       "sourceType": "org.apache.camel.component.caffeine.load.springboot.CaffeineLoadCacheComponentConfiguration",
       "defaultValue": 10000
     },
-    {
-      "name": "camel.component.caffeine-loadcache.key",
-      "type": "java.lang.Object",
-      "description": "To configure the default action key. If a key is set in the message header, then the key from the header takes precedence. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.caffeine.load.springboot.CaffeineLoadCacheComponentConfiguration"
-    },
     {
       "name": "camel.component.caffeine-loadcache.key-type",
       "type": "java.lang.String",
diff --git a/components-starter/camel-ehcache-starter/src/main/docs/ehcache.json b/components-starter/camel-ehcache-starter/src/main/docs/ehcache.json
index 18771f6061c..b2aa053c4a1 100644
--- a/components-starter/camel-ehcache-starter/src/main/docs/ehcache.json
+++ b/components-starter/camel-ehcache-starter/src/main/docs/ehcache.json
@@ -20,6 +20,12 @@
       "name": "camel.component.ehcache.customizer.cache-manager",
       "type": "org.apache.camel.component.ehcache.springboot.customizer.CacheManagerCustomizerConfiguration",
       "sourceType": "org.apache.camel.component.ehcache.springboot.customizer.CacheManagerCustomizerConfiguration"
+    },
+    {
+      "name": "camel.component.ehcache.key",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ehcache.springboot.EhcacheComponentConfiguration",
+      "sourceMethod": "getKey()"
     }
   ],
   "properties": [
@@ -136,12 +142,6 @@
       "description": "Set the type of events to listen for (EVICTED,EXPIRED,REMOVED,CREATED,UPDATED). You can specify multiple entries separated by comma.",
       "sourceType": "org.apache.camel.component.ehcache.springboot.EhcacheComponentConfiguration"
     },
-    {
-      "name": "camel.component.ehcache.key",
-      "type": "java.lang.Object",
-      "description": "To configure the default action key. If a key is set in the message header, then the key from the header takes precedence. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ehcache.springboot.EhcacheComponentConfiguration"
-    },
     {
       "name": "camel.component.ehcache.key-type",
       "type": "java.lang.String",
diff --git a/components-starter/camel-ignite-starter/src/main/docs/ignite.json b/components-starter/camel-ignite-starter/src/main/docs/ignite.json
index ec96335dcdf..9d13d4e2076 100644
--- a/components-starter/camel-ignite-starter/src/main/docs/ignite.json
+++ b/components-starter/camel-ignite-starter/src/main/docs/ignite.json
@@ -5,6 +5,12 @@
       "type": "org.apache.camel.component.ignite.cache.springboot.IgniteCacheComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.cache.springboot.IgniteCacheComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-cache.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.cache.springboot.IgniteCacheComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-cache.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -16,6 +22,12 @@
       "type": "org.apache.camel.component.ignite.compute.springboot.IgniteComputeComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.compute.springboot.IgniteComputeComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-compute.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.compute.springboot.IgniteComputeComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-compute.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -27,6 +39,12 @@
       "type": "org.apache.camel.component.ignite.events.springboot.IgniteEventsComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.events.springboot.IgniteEventsComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-events.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.events.springboot.IgniteEventsComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-events.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -38,6 +56,12 @@
       "type": "org.apache.camel.component.ignite.idgen.springboot.IgniteIdGenComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.idgen.springboot.IgniteIdGenComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-idgen.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.idgen.springboot.IgniteIdGenComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-idgen.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -49,6 +73,12 @@
       "type": "org.apache.camel.component.ignite.messaging.springboot.IgniteMessagingComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.messaging.springboot.IgniteMessagingComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-messaging.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.messaging.springboot.IgniteMessagingComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-messaging.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -60,6 +90,12 @@
       "type": "org.apache.camel.component.ignite.queue.springboot.IgniteQueueComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.queue.springboot.IgniteQueueComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-queue.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.queue.springboot.IgniteQueueComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-queue.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -71,6 +107,12 @@
       "type": "org.apache.camel.component.ignite.set.springboot.IgniteSetComponentConfiguration",
       "sourceType": "org.apache.camel.component.ignite.set.springboot.IgniteSetComponentConfiguration"
     },
+    {
+      "name": "camel.component.ignite-set.configuration-resource",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.ignite.set.springboot.IgniteSetComponentConfiguration",
+      "sourceMethod": "getConfigurationResource()"
+    },
     {
       "name": "camel.component.ignite-set.customizer",
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
@@ -93,12 +135,6 @@
       "sourceType": "org.apache.camel.component.ignite.cache.springboot.IgniteCacheComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.ignite-cache.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.cache.springboot.IgniteCacheComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-cache.customizer.enabled",
       "type": "java.lang.Boolean",
@@ -136,12 +172,6 @@
       "sourceType": "org.apache.camel.component.ignite.compute.springboot.IgniteComputeComponentConfiguration",
       "defaultValue": true
     },
-    {
-      "name": "camel.component.ignite-compute.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.compute.springboot.IgniteComputeComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-compute.customizer.enabled",
       "type": "java.lang.Boolean",
@@ -186,12 +216,6 @@
       "sourceType": "org.apache.camel.component.ignite.events.springboot.IgniteEventsComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.ignite-events.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.events.springboot.IgniteEventsComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-events.customizer.enabled",
       "type": "java.lang.Boolean",
@@ -222,12 +246,6 @@
       "sourceType": "org.apache.camel.component.ignite.idgen.springboot.IgniteIdGenComponentConfiguration",
       "defaultValue": true
     },
-    {
-      "name": "camel.component.ignite-idgen.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.idgen.springboot.IgniteIdGenComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-idgen.customizer.enabled",
       "type": "java.lang.Boolean",
@@ -272,12 +290,6 @@
       "sourceType": "org.apache.camel.component.ignite.messaging.springboot.IgniteMessagingComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.ignite-messaging.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.messaging.springboot.IgniteMessagingComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-messaging.customizer.enabled",
       "type": "java.lang.Boolean",
@@ -315,12 +327,6 @@
       "sourceType": "org.apache.camel.component.ignite.queue.springboot.IgniteQueueComponentConfiguration",
       "defaultValue": true
     },
-    {
-      "name": "camel.component.ignite-queue.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.queue.springboot.IgniteQueueComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-queue.customizer.enabled",
       "type": "java.lang.Boolean",
@@ -358,12 +364,6 @@
       "sourceType": "org.apache.camel.component.ignite.set.springboot.IgniteSetComponentConfiguration",
       "defaultValue": true
     },
-    {
-      "name": "camel.component.ignite-set.configuration-resource",
-      "type": "java.lang.Object",
-      "description": "The resource from where to load the configuration. It can be a: URL, String or InputStream type. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.ignite.set.springboot.IgniteSetComponentConfiguration"
-    },
     {
       "name": "camel.component.ignite-set.customizer.enabled",
       "type": "java.lang.Boolean",
diff --git a/components-starter/camel-infinispan-embedded-starter/src/main/docs/infinispan-embedded.json b/components-starter/camel-infinispan-embedded-starter/src/main/docs/infinispan-embedded.json
index 4c7f191ffdb..e7f76c9b121 100644
--- a/components-starter/camel-infinispan-embedded-starter/src/main/docs/infinispan-embedded.json
+++ b/components-starter/camel-infinispan-embedded-starter/src/main/docs/infinispan-embedded.json
@@ -10,6 +10,30 @@
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
       "sourceMethod": "getCustomizer()"
+    },
+    {
+      "name": "camel.component.infinispan-embedded.default-value",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
+      "sourceMethod": "getDefaultValue()"
+    },
+    {
+      "name": "camel.component.infinispan-embedded.key",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
+      "sourceMethod": "getKey()"
+    },
+    {
+      "name": "camel.component.infinispan-embedded.old-value",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
+      "sourceMethod": "getOldValue()"
+    },
+    {
+      "name": "camel.component.infinispan-embedded.value",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
+      "sourceMethod": "getValue()"
     }
   ],
   "properties": [
@@ -69,12 +93,6 @@
       "type": "java.lang.Boolean",
       "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
     },
-    {
-      "name": "camel.component.infinispan-embedded.default-value",
-      "type": "java.lang.Object",
-      "description": "Set a specific default value for some producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration"
-    },
     {
       "name": "camel.component.infinispan-embedded.enabled",
       "type": "java.lang.Boolean",
@@ -93,12 +111,6 @@
       "description": "A comma separated list of org.infinispan.context.Flag to be applied by default on each cache invocation",
       "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration"
     },
-    {
-      "name": "camel.component.infinispan-embedded.key",
-      "type": "java.lang.Object",
-      "description": "Set a specific key for producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration"
-    },
     {
       "name": "camel.component.infinispan-embedded.lazy-start-producer",
       "type": "java.lang.Boolean",
@@ -106,12 +118,6 @@
       "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.infinispan-embedded.old-value",
-      "type": "java.lang.Object",
-      "description": "Set a specific old value for some producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration"
-    },
     {
       "name": "camel.component.infinispan-embedded.operation",
       "type": "org.apache.camel.component.infinispan.InfinispanOperation",
@@ -142,12 +148,6 @@
       "description": "If true, the consumer will receive notifications synchronously",
       "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration",
       "defaultValue": true
-    },
-    {
-      "name": "camel.component.infinispan-embedded.value",
-      "type": "java.lang.Object",
-      "description": "Set a specific value for producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.embedded.springboot.InfinispanEmbeddedComponentConfiguration"
     }
   ],
   "hints": []
diff --git a/components-starter/camel-infinispan-starter/src/main/docs/infinispan.json b/components-starter/camel-infinispan-starter/src/main/docs/infinispan.json
index b47b44ea945..13ff12ae031 100644
--- a/components-starter/camel-infinispan-starter/src/main/docs/infinispan.json
+++ b/components-starter/camel-infinispan-starter/src/main/docs/infinispan.json
@@ -10,6 +10,30 @@
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration",
       "sourceMethod": "getCustomizer()"
+    },
+    {
+      "name": "camel.component.infinispan.default-value",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration",
+      "sourceMethod": "getDefaultValue()"
+    },
+    {
+      "name": "camel.component.infinispan.key",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration",
+      "sourceMethod": "getKey()"
+    },
+    {
+      "name": "camel.component.infinispan.old-value",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration",
+      "sourceMethod": "getOldValue()"
+    },
+    {
+      "name": "camel.component.infinispan.value",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration",
+      "sourceMethod": "getValue()"
     }
   ],
   "properties": [
@@ -68,12 +92,6 @@
       "type": "java.lang.Boolean",
       "sourceType": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties"
     },
-    {
-      "name": "camel.component.infinispan.default-value",
-      "type": "java.lang.Object",
-      "description": "Set a specific default value for some producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration"
-    },
     {
       "name": "camel.component.infinispan.enabled",
       "type": "java.lang.Boolean",
@@ -98,12 +116,6 @@
       "description": "Specifies the host of the cache on Infinispan instance",
       "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration"
     },
-    {
-      "name": "camel.component.infinispan.key",
-      "type": "java.lang.Object",
-      "description": "Set a specific key for producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration"
-    },
     {
       "name": "camel.component.infinispan.lazy-start-producer",
       "type": "java.lang.Boolean",
@@ -111,12 +123,6 @@
       "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.infinispan.old-value",
-      "type": "java.lang.Object",
-      "description": "Set a specific old value for some producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration"
-    },
     {
       "name": "camel.component.infinispan.operation",
       "type": "org.apache.camel.component.infinispan.InfinispanOperation",
@@ -177,12 +183,6 @@
       "type": "java.lang.String",
       "description": "Define the username to access the infinispan instance",
       "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration"
-    },
-    {
-      "name": "camel.component.infinispan.value",
-      "type": "java.lang.Object",
-      "description": "Set a specific value for producer operations. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.infinispan.remote.springboot.InfinispanRemoteComponentConfiguration"
     }
   ],
   "hints": []
diff --git a/components-starter/camel-undertow-starter/src/main/docs/undertow.json b/components-starter/camel-undertow-starter/src/main/docs/undertow.json
index 21e22616f82..8effd0bde46 100644
--- a/components-starter/camel-undertow-starter/src/main/docs/undertow.json
+++ b/components-starter/camel-undertow-starter/src/main/docs/undertow.json
@@ -10,6 +10,12 @@
       "type": "org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon$CustomizerProperties",
       "sourceType": "org.apache.camel.component.undertow.springboot.UndertowComponentConfiguration",
       "sourceMethod": "getCustomizer()"
+    },
+    {
+      "name": "camel.component.undertow.security-configuration",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.undertow.springboot.UndertowComponentConfiguration",
+      "sourceMethod": "getSecurityConfiguration()"
     }
   ],
   "properties": [
@@ -64,12 +70,6 @@
       "sourceType": "org.apache.camel.component.undertow.springboot.UndertowComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.undertow.security-configuration",
-      "type": "java.lang.Object",
-      "description": "Configuration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides, whether it accepts configuration. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.undertow.springboot.UndertowComponentConfiguration"
-    },
     {
       "name": "camel.component.undertow.security-provider",
       "type": "org.apache.camel.component.undertow.spi.UndertowSecurityProvider",
diff --git a/components-starter/camel-xmlsecurity-starter/src/main/docs/xmlsecurity.json b/components-starter/camel-xmlsecurity-starter/src/main/docs/xmlsecurity.json
index 7d0ea09a97a..6538f2ad2a9 100644
--- a/components-starter/camel-xmlsecurity-starter/src/main/docs/xmlsecurity.json
+++ b/components-starter/camel-xmlsecurity-starter/src/main/docs/xmlsecurity.json
@@ -22,6 +22,12 @@
       "sourceType": "org.apache.camel.component.xmlsecurity.springboot.XmlVerifierComponentConfiguration",
       "sourceMethod": "getCustomizer()"
     },
+    {
+      "name": "camel.component.xmlsecurity-verify.output-node-search",
+      "type": "java.lang.Object",
+      "sourceType": "org.apache.camel.component.xmlsecurity.springboot.XmlVerifierComponentConfiguration",
+      "sourceMethod": "getOutputNodeSearch()"
+    },
     {
       "name": "camel.dataformat.xml-security",
       "type": "org.apache.camel.dataformat.xmlsecurity.springboot.XMLSecurityDataFormatConfiguration",
@@ -294,12 +300,6 @@
       "sourceType": "org.apache.camel.component.xmlsecurity.springboot.XmlVerifierComponentConfiguration",
       "defaultValue": false
     },
-    {
-      "name": "camel.component.xmlsecurity-verify.output-node-search",
-      "type": "java.lang.Object",
-      "description": "Sets the output node search value for determining the node from the XML signature document which shall be set to the output message body. The class of the value depends on the type of the output node search. The output node search is forwarded to XmlSignature2Message. The option is a java.lang.Object type.",
-      "sourceType": "org.apache.camel.component.xmlsecurity.springboot.XmlVerifierComponentConfiguration"
-    },
     {
       "name": "camel.component.xmlsecurity-verify.output-node-search-type",
       "type": "java.lang.String",