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 d4f1beb2cb1 Regen
d4f1beb2cb1 is described below

commit d4f1beb2cb1489a30428025ea88ae30429391272
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Sep 27 12:53:43 2023 +0200

    Regen
---
 .../endpoint/dsl/FileEndpointBuilderFactory.java   | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/FileEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/FileEndpointBuilderFactory.java
index 807d4e61725..ace22d36f29 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/FileEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/FileEndpointBuilderFactory.java
@@ -2177,6 +2177,45 @@ public interface FileEndpointBuilderFactory {
             doSetProperty("extendedAttributes", extendedAttributes);
             return this;
         }
+        /**
+         * Whether to accept hidden directories. Directories which names starts
+         * with dot is regarded as a hidden directory, and by default not
+         * included. Set this option to true to include hidden directories in
+         * the file consumer.
+         * 
+         * The option is a: &lt;code&gt;boolean&lt;/code&gt; type.
+         * 
+         * Default: false
+         * Group: consumer (advanced)
+         * 
+         * @param includeHiddenDirs the value to set
+         * @return the dsl builder
+         */
+        default AdvancedFileEndpointConsumerBuilder includeHiddenDirs(
+                boolean includeHiddenDirs) {
+            doSetProperty("includeHiddenDirs", includeHiddenDirs);
+            return this;
+        }
+        /**
+         * Whether to accept hidden directories. Directories which names starts
+         * with dot is regarded as a hidden directory, and by default not
+         * included. Set this option to true to include hidden directories in
+         * the file consumer.
+         * 
+         * The option will be converted to a &lt;code&gt;boolean&lt;/code&gt;
+         * type.
+         * 
+         * Default: false
+         * Group: consumer (advanced)
+         * 
+         * @param includeHiddenDirs the value to set
+         * @return the dsl builder
+         */
+        default AdvancedFileEndpointConsumerBuilder includeHiddenDirs(
+                String includeHiddenDirs) {
+            doSetProperty("includeHiddenDirs", includeHiddenDirs);
+            return this;
+        }
         /**
          * Whether to accept hidden files. Files which names starts with dot is
          * regarded as a hidden file, and by default not included. Set this

Reply via email to