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 2023/04/15 16:13:30 UTC

[camel] branch main updated: Regen for commit 7b0f2335000e36e4913a8081e0dc7cfe90cfdf53 (#9873)

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 8a6f4d2f280 Regen for commit 7b0f2335000e36e4913a8081e0dc7cfe90cfdf53 (#9873)
8a6f4d2f280 is described below

commit 8a6f4d2f280f0c2197c854d7657d41e722c11918
Author: github-actions[bot] <41...@users.noreply.github.com>
AuthorDate: Sat Apr 15 18:13:24 2023 +0200

    Regen for commit 7b0f2335000e36e4913a8081e0dc7cfe90cfdf53 (#9873)
    
    Signed-off-by: GitHub <no...@github.com>
    Co-authored-by: oscerd <os...@users.noreply.github.com>
---
 .../endpoint/dsl/NettyEndpointBuilderFactory.java  | 54 ++++++++++++++++++++++
 .../dsl/NettyHttpEndpointBuilderFactory.java       | 54 ++++++++++++++++++++++
 2 files changed, 108 insertions(+)

diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyEndpointBuilderFactory.java
index 6844b41dfb0..847b1d3936d 100644
--- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyEndpointBuilderFactory.java
+++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyEndpointBuilderFactory.java
@@ -1828,6 +1828,24 @@ public interface NettyEndpointBuilderFactory {
             doSetProperty("udpByteArrayCodec", udpByteArrayCodec);
             return this;
         }
+        /**
+         * Path to unix domain socket to use instead of inet socket. Host and
+         * port parameters will not be used, however required. It is ok to set
+         * dummy values for them. Must be used with nativeTransport=true and
+         * clientMode=false.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: advanced
+         * 
+         * @param unixDomainSocketPath the value to set
+         * @return the dsl builder
+         */
+        default AdvancedNettyEndpointConsumerBuilder unixDomainSocketPath(
+                String unixDomainSocketPath) {
+            doSetProperty("unixDomainSocketPath", unixDomainSocketPath);
+            return this;
+        }
         /**
          * When netty works on nio mode, it uses default workerCount parameter
          * from Netty (which is cpu_core_threads x 2). User can use this option
@@ -3624,6 +3642,24 @@ public interface NettyEndpointBuilderFactory {
             doSetProperty("udpByteArrayCodec", udpByteArrayCodec);
             return this;
         }
+        /**
+         * Path to unix domain socket to use instead of inet socket. Host and
+         * port parameters will not be used, however required. It is ok to set
+         * dummy values for them. Must be used with nativeTransport=true and
+         * clientMode=false.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: advanced
+         * 
+         * @param unixDomainSocketPath the value to set
+         * @return the dsl builder
+         */
+        default AdvancedNettyEndpointProducerBuilder unixDomainSocketPath(
+                String unixDomainSocketPath) {
+            doSetProperty("unixDomainSocketPath", unixDomainSocketPath);
+            return this;
+        }
         /**
          * When netty works on nio mode, it uses default workerCount parameter
          * from Netty (which is cpu_core_threads x 2). User can use this option
@@ -4829,6 +4865,24 @@ public interface NettyEndpointBuilderFactory {
             doSetProperty("udpByteArrayCodec", udpByteArrayCodec);
             return this;
         }
+        /**
+         * Path to unix domain socket to use instead of inet socket. Host and
+         * port parameters will not be used, however required. It is ok to set
+         * dummy values for them. Must be used with nativeTransport=true and
+         * clientMode=false.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: advanced
+         * 
+         * @param unixDomainSocketPath the value to set
+         * @return the dsl builder
+         */
+        default AdvancedNettyEndpointBuilder unixDomainSocketPath(
+                String unixDomainSocketPath) {
+            doSetProperty("unixDomainSocketPath", unixDomainSocketPath);
+            return this;
+        }
         /**
          * When netty works on nio mode, it uses default workerCount parameter
          * from Netty (which is cpu_core_threads x 2). User can use this option
diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyHttpEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyHttpEndpointBuilderFactory.java
index 55e21965e99..bdb04ecea4a 100644
--- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyHttpEndpointBuilderFactory.java
+++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/NettyHttpEndpointBuilderFactory.java
@@ -2300,6 +2300,24 @@ public interface NettyHttpEndpointBuilderFactory {
             doSetProperty("transferExchange", transferExchange);
             return this;
         }
+        /**
+         * Path to unix domain socket to use instead of inet socket. Host and
+         * port parameters will not be used, however required. It is ok to set
+         * dummy values for them. Must be used with nativeTransport=true and
+         * clientMode=false.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: advanced
+         * 
+         * @param unixDomainSocketPath the value to set
+         * @return the dsl builder
+         */
+        default AdvancedNettyHttpEndpointConsumerBuilder unixDomainSocketPath(
+                String unixDomainSocketPath) {
+            doSetProperty("unixDomainSocketPath", unixDomainSocketPath);
+            return this;
+        }
         /**
          * When netty works on nio mode, it uses default workerCount parameter
          * from Netty (which is cpu_core_threads x 2). User can use this option
@@ -4132,6 +4150,24 @@ public interface NettyHttpEndpointBuilderFactory {
             doSetProperty("transferExchange", transferExchange);
             return this;
         }
+        /**
+         * Path to unix domain socket to use instead of inet socket. Host and
+         * port parameters will not be used, however required. It is ok to set
+         * dummy values for them. Must be used with nativeTransport=true and
+         * clientMode=false.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: advanced
+         * 
+         * @param unixDomainSocketPath the value to set
+         * @return the dsl builder
+         */
+        default AdvancedNettyHttpEndpointProducerBuilder unixDomainSocketPath(
+                String unixDomainSocketPath) {
+            doSetProperty("unixDomainSocketPath", unixDomainSocketPath);
+            return this;
+        }
         /**
          * When netty works on nio mode, it uses default workerCount parameter
          * from Netty (which is cpu_core_threads x 2). User can use this option
@@ -5381,6 +5417,24 @@ public interface NettyHttpEndpointBuilderFactory {
             doSetProperty("transferExchange", transferExchange);
             return this;
         }
+        /**
+         * Path to unix domain socket to use instead of inet socket. Host and
+         * port parameters will not be used, however required. It is ok to set
+         * dummy values for them. Must be used with nativeTransport=true and
+         * clientMode=false.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: advanced
+         * 
+         * @param unixDomainSocketPath the value to set
+         * @return the dsl builder
+         */
+        default AdvancedNettyHttpEndpointBuilder unixDomainSocketPath(
+                String unixDomainSocketPath) {
+            doSetProperty("unixDomainSocketPath", unixDomainSocketPath);
+            return this;
+        }
         /**
          * When netty works on nio mode, it uses default workerCount parameter
          * from Netty (which is cpu_core_threads x 2). User can use this option