This is an automated email from the ASF dual-hosted git repository.

acosentino 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 d25783801f6 Regen for commit 40dfe1382ae2f2bcfcdb1935f1f88c9bf829eae1
d25783801f6 is described below

commit d25783801f6645eae4f2869ccbfe4f6d1a8750b5
Author: oscerd <osc...@users.noreply.github.com>
AuthorDate: Tue Sep 13 09:51:25 2022 +0000

    Regen for commit 40dfe1382ae2f2bcfcdb1935f1f88c9bf829eae1
    
    Signed-off-by: GitHub <nore...@github.com>
---
 .../endpoint/dsl/XJEndpointBuilderFactory.java     | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/XJEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/XJEndpointBuilderFactory.java
index d56efc5ee2c..fe65c8348ba 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/XJEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/XJEndpointBuilderFactory.java
@@ -516,6 +516,45 @@ public interface XJEndpointBuilderFactory {
             doSetProperty("saxonExtensionFunctions", saxonExtensionFunctions);
             return this;
         }
+        /**
+         * Feature for XML secure processing (see javax.xml.XMLConstants). This
+         * is enabled by default. However, when using Saxon Professional you 
may
+         * need to turn this off to allow Saxon to be able to use Java 
extension
+         * functions.
+         * 
+         * The option is a: &lt;code&gt;boolean&lt;/code&gt; type.
+         * 
+         * Default: true
+         * Group: advanced
+         * 
+         * @param secureProcessing the value to set
+         * @return the dsl builder
+         */
+        default AdvancedXJEndpointBuilder secureProcessing(
+                boolean secureProcessing) {
+            doSetProperty("secureProcessing", secureProcessing);
+            return this;
+        }
+        /**
+         * Feature for XML secure processing (see javax.xml.XMLConstants). This
+         * is enabled by default. However, when using Saxon Professional you 
may
+         * need to turn this off to allow Saxon to be able to use Java 
extension
+         * functions.
+         * 
+         * The option will be converted to a &lt;code&gt;boolean&lt;/code&gt;
+         * type.
+         * 
+         * Default: true
+         * Group: advanced
+         * 
+         * @param secureProcessing the value to set
+         * @return the dsl builder
+         */
+        default AdvancedXJEndpointBuilder secureProcessing(
+                String secureProcessing) {
+            doSetProperty("secureProcessing", secureProcessing);
+            return this;
+        }
         /**
          * To use a custom XSLT transformer factory.
          * 

Reply via email to