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.git


The following commit(s) were added to refs/heads/main by this push:
     new f53ccea95bc8 Polished
f53ccea95bc8 is described below

commit f53ccea95bc8c006e6f1f898842eb912be2bc280
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Jan 8 20:26:18 2026 +0100

    Polished
---
 .../resources/org/apache/camel/catalog/components/once.json    |  2 +-
 .../resources/org/apache/camel/catalog/components/stripe.json  |  2 +-
 .../META-INF/org/apache/camel/component/once/once.json         |  2 +-
 components/camel-once/src/main/docs/once-component.adoc        |  2 +-
 .../java/org/apache/camel/component/once/OnceEndpoint.java     |  3 +++
 .../META-INF/org/apache/camel/component/stripe/stripe.json     |  2 +-
 components/camel-stripe/src/main/docs/stripe-component.adoc    |  2 +-
 .../java/org/apache/camel/component/stripe/StripeEndpoint.java |  3 +++
 .../apache/camel/builder/endpoint/StaticEndpointBuilders.java  | 10 ++++++----
 .../camel/builder/endpoint/dsl/OnceEndpointBuilderFactory.java |  9 ++++++---
 .../builder/endpoint/dsl/StripeEndpointBuilderFactory.java     |  8 ++++----
 11 files changed, 28 insertions(+), 17 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/once.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/once.json
index 645760b0d842..de111f0f9b3f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/once.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/once.json
@@ -3,7 +3,7 @@
     "kind": "component",
     "name": "once",
     "title": "Once",
-    "description": "Camel Once component",
+    "description": "Trigger a single message only once at startup (useful for 
development and testing purposes).",
     "deprecated": false,
     "firstVersion": "4.17.0",
     "label": "core,scheduling",
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stripe.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stripe.json
index f2f74b56333b..bfb10872162a 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stripe.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stripe.json
@@ -3,7 +3,7 @@
     "kind": "component",
     "name": "stripe",
     "title": "Stripe",
-    "description": "Camel Stripe component",
+    "description": "Interact with the Stripe payment platform.",
     "deprecated": false,
     "firstVersion": "4.17.0",
     "label": "saas,finance",
diff --git 
a/components/camel-once/src/generated/resources/META-INF/org/apache/camel/component/once/once.json
 
b/components/camel-once/src/generated/resources/META-INF/org/apache/camel/component/once/once.json
index 645760b0d842..de111f0f9b3f 100644
--- 
a/components/camel-once/src/generated/resources/META-INF/org/apache/camel/component/once/once.json
+++ 
b/components/camel-once/src/generated/resources/META-INF/org/apache/camel/component/once/once.json
@@ -3,7 +3,7 @@
     "kind": "component",
     "name": "once",
     "title": "Once",
-    "description": "Camel Once component",
+    "description": "Trigger a single message only once at startup (useful for 
development and testing purposes).",
     "deprecated": false,
     "firstVersion": "4.17.0",
     "label": "core,scheduling",
diff --git a/components/camel-once/src/main/docs/once-component.adoc 
b/components/camel-once/src/main/docs/once-component.adoc
index f51c5aa5ad8a..7a24b81f668a 100644
--- a/components/camel-once/src/main/docs/once-component.adoc
+++ b/components/camel-once/src/main/docs/once-component.adoc
@@ -2,7 +2,7 @@
 :doctitle: Once
 :shortname: once
 :artifactid: camel-once
-:description: Camel Once component
+:description: Trigger a single message only once at startup (useful for 
development and testing purposes).
 :since: 4.17
 :supportlevel: Preview
 :tabs-sync-option:
diff --git 
a/components/camel-once/src/main/java/org/apache/camel/component/once/OnceEndpoint.java
 
b/components/camel-once/src/main/java/org/apache/camel/component/once/OnceEndpoint.java
index 39e7dc0fb9ca..bbe267cfc8c9 100644
--- 
a/components/camel-once/src/main/java/org/apache/camel/component/once/OnceEndpoint.java
+++ 
b/components/camel-once/src/main/java/org/apache/camel/component/once/OnceEndpoint.java
@@ -30,6 +30,9 @@ import org.apache.camel.spi.UriParam;
 import org.apache.camel.spi.UriPath;
 import org.apache.camel.support.DefaultEndpoint;
 
+/**
+ * Trigger a single message only once at startup (useful for development and 
testing purposes).
+ */
 @UriEndpoint(firstVersion = "4.17.0", scheme = "once", title = "Once", syntax 
= "once:name", consumerOnly = true,
              remote = false, category = { Category.CORE, Category.SCHEDULING })
 public class OnceEndpoint extends DefaultEndpoint {
diff --git 
a/components/camel-stripe/src/generated/resources/META-INF/org/apache/camel/component/stripe/stripe.json
 
b/components/camel-stripe/src/generated/resources/META-INF/org/apache/camel/component/stripe/stripe.json
index f2f74b56333b..bfb10872162a 100644
--- 
a/components/camel-stripe/src/generated/resources/META-INF/org/apache/camel/component/stripe/stripe.json
+++ 
b/components/camel-stripe/src/generated/resources/META-INF/org/apache/camel/component/stripe/stripe.json
@@ -3,7 +3,7 @@
     "kind": "component",
     "name": "stripe",
     "title": "Stripe",
-    "description": "Camel Stripe component",
+    "description": "Interact with the Stripe payment platform.",
     "deprecated": false,
     "firstVersion": "4.17.0",
     "label": "saas,finance",
diff --git a/components/camel-stripe/src/main/docs/stripe-component.adoc 
b/components/camel-stripe/src/main/docs/stripe-component.adoc
index c10b1cbb4039..b02fe1a7bb99 100644
--- a/components/camel-stripe/src/main/docs/stripe-component.adoc
+++ b/components/camel-stripe/src/main/docs/stripe-component.adoc
@@ -2,7 +2,7 @@
 :doctitle: Stripe
 :shortname: stripe
 :artifactid: camel-stripe
-:description: Camel Stripe component
+:description: Interact with the Stripe payment platform.
 :since: 4.17
 :supportlevel: Preview
 :tabs-sync-option:
diff --git 
a/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeEndpoint.java
 
b/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeEndpoint.java
index fef38864c0df..075638a4b129 100644
--- 
a/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeEndpoint.java
+++ 
b/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeEndpoint.java
@@ -25,6 +25,9 @@ import org.apache.camel.spi.UriEndpoint;
 import org.apache.camel.spi.UriParam;
 import org.apache.camel.support.DefaultEndpoint;
 
+/**
+ * Interact with the Stripe payment platform.
+ */
 @UriEndpoint(firstVersion = "4.17.0", scheme = "stripe", title = "Stripe", 
syntax = "stripe:operation",
              category = { Category.SAAS, Category.FINANCE }, producerOnly = 
true, headersClass = StripeConstants.class)
 public class StripeEndpoint extends DefaultEndpoint implements 
EndpointServiceLocation {
diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index 5cca5401ed32..656f59429c82 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -11926,7 +11926,8 @@ public class StaticEndpointBuilders {
     }
     /**
      * Once (camel-once)
-     * Camel Once component
+     * Trigger a single message only once at startup (useful for development 
and
+     * testing purposes).
      * 
      * Category: core,scheduling
      * Since: 4.17
@@ -11945,7 +11946,8 @@ public class StaticEndpointBuilders {
     }
     /**
      * Once (camel-once)
-     * Camel Once component
+     * Trigger a single message only once at startup (useful for development 
and
+     * testing purposes).
      * 
      * Category: core,scheduling
      * Since: 4.17
@@ -15553,7 +15555,7 @@ public class StaticEndpointBuilders {
     }
     /**
      * Stripe (camel-stripe)
-     * Camel Stripe component
+     * Interact with the Stripe payment platform.
      * 
      * Category: saas,finance
      * Since: 4.17
@@ -15575,7 +15577,7 @@ public class StaticEndpointBuilders {
     }
     /**
      * Stripe (camel-stripe)
-     * Camel Stripe component
+     * Interact with the Stripe payment platform.
      * 
      * Category: saas,finance
      * Since: 4.17
diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/OnceEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/OnceEndpointBuilderFactory.java
index d61adba4cc89..d8e6386128e3 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/OnceEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/OnceEndpointBuilderFactory.java
@@ -27,7 +27,8 @@ import org.apache.camel.builder.EndpointProducerBuilder;
 import org.apache.camel.builder.endpoint.AbstractEndpointBuilder;
 
 /**
- * Camel Once component
+ * Trigger a single message only once at startup (useful for development and
+ * testing purposes).
  * 
  * Generated by camel build tools - do NOT edit this file!
  */
@@ -376,7 +377,8 @@ public interface OnceEndpointBuilderFactory {
     public interface OnceBuilders {
         /**
          * Once (camel-once)
-         * Camel Once component
+         * Trigger a single message only once at startup (useful for 
development
+         * and testing purposes).
          * 
          * Category: core,scheduling
          * Since: 4.17
@@ -395,7 +397,8 @@ public interface OnceEndpointBuilderFactory {
         }
         /**
          * Once (camel-once)
-         * Camel Once component
+         * Trigger a single message only once at startup (useful for 
development
+         * and testing purposes).
          * 
          * Category: core,scheduling
          * Since: 4.17
diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StripeEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StripeEndpointBuilderFactory.java
index b0b89f8dd792..2b5338fec529 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StripeEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StripeEndpointBuilderFactory.java
@@ -27,7 +27,7 @@ import org.apache.camel.builder.EndpointProducerBuilder;
 import org.apache.camel.builder.endpoint.AbstractEndpointBuilder;
 
 /**
- * Camel Stripe component
+ * Interact with the Stripe payment platform.
  * 
  * Generated by camel build tools - do NOT edit this file!
  */
@@ -135,7 +135,7 @@ public interface StripeEndpointBuilderFactory {
     public interface StripeBuilders {
         /**
          * Stripe (camel-stripe)
-         * Camel Stripe component
+         * Interact with the Stripe payment platform.
          * 
          * Category: saas,finance
          * Since: 4.17
@@ -148,7 +148,7 @@ public interface StripeEndpointBuilderFactory {
         }
         /**
          * Stripe (camel-stripe)
-         * Camel Stripe component
+         * Interact with the Stripe payment platform.
          * 
          * Category: saas,finance
          * Since: 4.17
@@ -170,7 +170,7 @@ public interface StripeEndpointBuilderFactory {
         }
         /**
          * Stripe (camel-stripe)
-         * Camel Stripe component
+         * Interact with the Stripe payment platform.
          * 
          * Category: saas,finance
          * Since: 4.17

Reply via email to