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
commit 54867f9194d0d83e9885e86cc29a7bebd4d4a13c Author: Claus Ibsen <[email protected]> AuthorDate: Tue Jan 2 12:22:10 2024 +0100 Regen --- .../dsl/JsonValidatorEndpointBuilderFactory.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JsonValidatorEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JsonValidatorEndpointBuilderFactory.java index f2eebc6f233..252ceeb0f40 100644 --- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JsonValidatorEndpointBuilderFactory.java +++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JsonValidatorEndpointBuilderFactory.java @@ -255,6 +255,38 @@ public interface JsonValidatorEndpointBuilderFactory { doSetProperty("lazyStartProducer", lazyStartProducer); return this; } + /** + * Comma-separated list of Jackson DeserializationFeature enum values + * which will be disabled for parsing exchange body. + * + * The option is a: <code>java.lang.String</code> type. + * + * Group: advanced + * + * @param disabledDeserializationFeatures the value to set + * @return the dsl builder + */ + default AdvancedJsonValidatorEndpointBuilder disabledDeserializationFeatures( + String disabledDeserializationFeatures) { + doSetProperty("disabledDeserializationFeatures", disabledDeserializationFeatures); + return this; + } + /** + * Comma-separated list of Jackson DeserializationFeature enum values + * which will be enabled for parsing exchange body. + * + * The option is a: <code>java.lang.String</code> type. + * + * Group: advanced + * + * @param enabledDeserializationFeatures the value to set + * @return the dsl builder + */ + default AdvancedJsonValidatorEndpointBuilder enabledDeserializationFeatures( + String enabledDeserializationFeatures) { + doSetProperty("enabledDeserializationFeatures", enabledDeserializationFeatures); + return this; + } /** * To use a custom ValidatorErrorHandler. The default error handler * captures the errors and throws an exception.
