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 7982233d0d2 Regen for commit 1f2b6c4dbc19e1a71a3f8d2b1107471dbf139c67 
(#7639)
7982233d0d2 is described below

commit 7982233d0d2ed9251dbc9570f8fe83633fb8aacd
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu May 19 06:29:57 2022 +0200

    Regen for commit 1f2b6c4dbc19e1a71a3f8d2b1107471dbf139c67 (#7639)
    
    Signed-off-by: GitHub <nore...@github.com>
    
    Co-authored-by: oscerd <osc...@users.noreply.github.com>
---
 .../endpoint/dsl/StreamEndpointBuilderFactory.java | 35 ++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
index 9dd4acc11d8..4491cafe236 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
@@ -296,6 +296,41 @@ public interface StreamEndpointBuilderFactory {
             doSetProperty("promptMessage", promptMessage);
             return this;
         }
+        /**
+         * Whether to read the input stream in line mode (terminate by line
+         * breaks). Setting this to false, will instead read the entire stream
+         * until EOL.
+         * 
+         * The option is a: &lt;code&gt;boolean&lt;/code&gt; type.
+         * 
+         * Default: true
+         * Group: consumer
+         * 
+         * @param readLine the value to set
+         * @return the dsl builder
+         */
+        default StreamEndpointConsumerBuilder readLine(boolean readLine) {
+            doSetProperty("readLine", readLine);
+            return this;
+        }
+        /**
+         * Whether to read the input stream in line mode (terminate by line
+         * breaks). Setting this to false, will instead read the entire stream
+         * until EOL.
+         * 
+         * The option will be converted to a &lt;code&gt;boolean&lt;/code&gt;
+         * type.
+         * 
+         * Default: true
+         * Group: consumer
+         * 
+         * @param readLine the value to set
+         * @return the dsl builder
+         */
+        default StreamEndpointConsumerBuilder readLine(String readLine) {
+            doSetProperty("readLine", readLine);
+            return this;
+        }
         /**
          * Will retry opening the stream if it's overwritten, somewhat like 
tail
          * --retry If reading from files then you should also enable the

Reply via email to