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 522e6ca4b27 Regen
522e6ca4b27 is described below
commit 522e6ca4b27499f6958db21dc9fd0ee62d97e541
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed Mar 20 10:11:33 2024 +0100
Regen
Signed-off-by: Andrea Cosentino <[email protected]>
---
.../AzureServicebusComponentBuilderFactory.java | 17 +++++++++++
.../dsl/ServiceBusEndpointBuilderFactory.java | 35 ++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AzureServicebusComponentBuilderFactory.java
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AzureServicebusComponentBuilderFactory.java
index 925f0796013..eb26e95513a 100644
---
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AzureServicebusComponentBuilderFactory.java
+++
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AzureServicebusComponentBuilderFactory.java
@@ -217,6 +217,23 @@ public interface AzureServicebusComponentBuilderFactory {
doSetProperty("disableAutoComplete", disableAutoComplete);
return this;
}
+ /**
+ * Enable application level deadlettering to the subscription
deadletter
+ * subqueue if deadletter related headers are set.
+ *
+ * The option is a: <code>boolean</code> type.
+ *
+ * Default: false
+ * Group: consumer
+ *
+ * @param enableDeadLettering the value to set
+ * @return the dsl builder
+ */
+ default AzureServicebusComponentBuilder enableDeadLettering(
+ boolean enableDeadLettering) {
+ doSetProperty("enableDeadLettering", enableDeadLettering);
+ return this;
+ }
/**
* Sets the amount of time to continue auto-renewing the lock. Setting
* ZERO disables auto-renewal. For ServiceBus receive mode
diff --git
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/ServiceBusEndpointBuilderFactory.java
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/ServiceBusEndpointBuilderFactory.java
index 59fa3566a2c..4dc20bfaa4b 100644
---
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/ServiceBusEndpointBuilderFactory.java
+++
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/ServiceBusEndpointBuilderFactory.java
@@ -294,6 +294,41 @@ public interface ServiceBusEndpointBuilderFactory {
doSetProperty("disableAutoComplete", disableAutoComplete);
return this;
}
+ /**
+ * Enable application level deadlettering to the subscription
deadletter
+ * subqueue if deadletter related headers are set.
+ *
+ * The option is a: <code>boolean</code> type.
+ *
+ * Default: false
+ * Group: consumer
+ *
+ * @param enableDeadLettering the value to set
+ * @return the dsl builder
+ */
+ default ServiceBusEndpointConsumerBuilder enableDeadLettering(
+ boolean enableDeadLettering) {
+ doSetProperty("enableDeadLettering", enableDeadLettering);
+ return this;
+ }
+ /**
+ * Enable application level deadlettering to the subscription
deadletter
+ * subqueue if deadletter related headers are set.
+ *
+ * The option will be converted to a <code>boolean</code>
+ * type.
+ *
+ * Default: false
+ * Group: consumer
+ *
+ * @param enableDeadLettering the value to set
+ * @return the dsl builder
+ */
+ default ServiceBusEndpointConsumerBuilder enableDeadLettering(
+ String enableDeadLettering) {
+ doSetProperty("enableDeadLettering", enableDeadLettering);
+ return this;
+ }
/**
* Sets the amount of time to continue auto-renewing the lock. Setting
* ZERO disables auto-renewal. For ServiceBus receive mode