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 deeb41fe4a2 Regen for commit 5ce91c65952eaee0171b70397cf74ab88d343f34 
(#8995)
deeb41fe4a2 is described below

commit deeb41fe4a22ba13703b3078b0dbfb03f7bcddec
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 5 13:42:05 2023 +0100

    Regen for commit 5ce91c65952eaee0171b70397cf74ab88d343f34 (#8995)
    
    Signed-off-by: GitHub <[email protected]>
    
    Signed-off-by: GitHub <[email protected]>
    Co-authored-by: orpiske <[email protected]>
---
 .../endpoint/dsl/PulsarEndpointBuilderFactory.java | 33 ++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/PulsarEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/PulsarEndpointBuilderFactory.java
index d25310f27df..6de28789eb8 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/PulsarEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/PulsarEndpointBuilderFactory.java
@@ -1060,6 +1060,39 @@ public interface PulsarEndpointBuilderFactory {
             doSetProperty("blockIfQueueFull", blockIfQueueFull);
             return this;
         }
+        /**
+         * Control whether chunking of messages is enabled for the producer.
+         * 
+         * The option is a: &lt;code&gt;boolean&lt;/code&gt; type.
+         * 
+         * Default: false
+         * Group: producer
+         * 
+         * @param chunkingEnabled the value to set
+         * @return the dsl builder
+         */
+        default PulsarEndpointProducerBuilder chunkingEnabled(
+                boolean chunkingEnabled) {
+            doSetProperty("chunkingEnabled", chunkingEnabled);
+            return this;
+        }
+        /**
+         * Control whether chunking of messages is enabled for the producer.
+         * 
+         * The option will be converted to a &lt;code&gt;boolean&lt;/code&gt;
+         * type.
+         * 
+         * Default: false
+         * Group: producer
+         * 
+         * @param chunkingEnabled the value to set
+         * @return the dsl builder
+         */
+        default PulsarEndpointProducerBuilder chunkingEnabled(
+                String chunkingEnabled) {
+            doSetProperty("chunkingEnabled", chunkingEnabled);
+            return this;
+        }
         /**
          * Compression type to use.
          * 

Reply via email to