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-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new fe5ad43 [create-pull-request] automated change
fe5ad43 is described below
commit fe5ad4338f98f994b8b5f27f0db027631633b509
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Mar 1 01:08:29 2022 +0000
[create-pull-request] automated change
---
.../springboot/catalog/dataformats/any23.json | 2 +-
.../camel/springboot/catalog/dataformats/asn1.json | 2 +-
.../catalog/dataformats/avroJackson.json | 16 ++++----
.../springboot/catalog/dataformats/barcode.json | 4 +-
.../springboot/catalog/dataformats/base64.json | 4 +-
.../springboot/catalog/dataformats/beanio.json | 2 +-
.../springboot/catalog/dataformats/bindyCsv.json | 4 +-
.../springboot/catalog/dataformats/bindyFixed.json | 4 +-
.../springboot/catalog/dataformats/bindyKvp.json | 4 +-
.../camel/springboot/catalog/dataformats/cbor.json | 6 +--
.../springboot/catalog/dataformats/crypto.json | 10 ++---
.../camel/springboot/catalog/dataformats/csv.json | 22 +++++-----
.../camel/springboot/catalog/languages/bean.json | 4 +-
.../springboot/catalog/languages/datasonnet.json | 2 +-
.../camel/springboot/catalog/languages/groovy.json | 2 +-
.../springboot/catalog/languages/hl7terser.json | 2 +-
.../camel/springboot/catalog/languages/joor.json | 6 +--
.../springboot/catalog/languages/jsonpath.json | 10 ++---
.../camel/springboot/catalog/languages/mvel.json | 2 +-
.../camel/springboot/catalog/languages/ognl.json | 2 +-
.../camel/springboot/catalog/languages/spel.json | 2 +-
.../camel/springboot/catalog/languages/xpath.json | 10 ++---
.../camel/springboot/catalog/languages/xquery.json | 4 +-
.../springboot/catalog/languages/xtokenize.json | 8 ++--
.../springboot/Any23DataFormatConfiguration.java | 26 ++++++------
.../camel-asn1-starter/src/main/docs/asn1.json | 2 +-
.../springboot/ASN1DataFormatConfiguration.java | 28 ++++++-------
.../springboot/BarcodeDataFormatConfiguration.java | 48 +++++++++++-----------
.../BindyCsvDataFormatConfiguration.java | 28 ++++++-------
.../BindyFixedLengthDataFormatConfiguration.java | 28 ++++++-------
.../BindyKeyValuePairDataFormatConfiguration.java | 28 ++++++-------
.../camel-crypto-starter/src/main/docs/crypto.json | 5 ++-
.../springboot/CryptoDataFormatConfiguration.java | 34 +++++++--------
.../camel-csv-starter/src/main/docs/csv.json | 3 +-
.../csv/springboot/CsvDataFormatConfiguration.java | 2 +-
35 files changed, 184 insertions(+), 182 deletions(-)
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
index 01f917b..ec3f35b 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
@@ -17,9 +17,9 @@
},
"properties": {
"outputFormat": { "kind": "attribute", "displayName": "Output Format",
"required": false, "type": "enum", "javaType":
"org.apache.camel.dataformat.any23.Any23OutputFormat", "enum": [ "NTRIPLES",
"TURTLE", "NQUADS", "RDFXML", "JSONLD", "RDFJSON", "RDF4JMODEL" ],
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
"RDF4JMODEL", "description": "What RDF syntax to unmarshal as, can be:
NTRIPLES, TURTLE, NQUADS, RDFXML, JSONLD, RDFJSON, RDF4JMODEL. It is by
default: [...]
+ "baseUri": { "kind": "attribute", "displayName": "Base Uri", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The URI to use as base for
building RDF entities if only relative paths are provided." },
"configuration": { "kind": "element", "displayName": "Configuration",
"required": false, "type": "array", "javaType":
"java.util.List<org.apache.camel.model.PropertyDefinition>", "deprecated":
false, "autowired": false, "secret": false, "description": "Configurations for
Apache Any23 as key-value pairs in order to customize the extraction process.
The list of supported parameters can be found here. If not provided, a default
configuration is used." },
"extractors": { "kind": "element", "displayName": "Extractors",
"required": false, "type": "array", "javaType":
"java.util.List<java.lang.String>", "deprecated": false, "autowired": false,
"secret": false, "description": "List of Any23 extractors to be used in the
unmarshal operation. A list of the available extractors can be found here here.
If not provided, all the available extractors are used." },
- "baseUri": { "kind": "attribute", "displayName": "Base Uri", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The URI to use as base for
building RDF entities if only relative paths are provided." },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/asn1.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/asn1.json
index 0836090..d8bf27c 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/asn1.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/asn1.json
@@ -16,8 +16,8 @@
"modelJavaType": "org.apache.camel.model.dataformat.ASN1DataFormat"
},
"properties": {
- "usingIterator": { "kind": "attribute", "displayName": "Using Iterator",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "If the asn1 file has more then one entry, the setting
this option to true, allows to work with the splitter EIP, to split the data
using an iterator in a streaming mode." },
"unmarshalType": { "kind": "attribute", "displayName": "Unmarshal Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Class
to use when unmarshalling." },
+ "usingIterator": { "kind": "attribute", "displayName": "Using Iterator",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "If the asn1 file has more than one entry, the setting
this option to true, allows working with the splitter EIP, to split the data
using an iterator in a streaming mode." },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
index 4be2331..9e13ac6 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/avroJackson.json
@@ -16,24 +16,24 @@
"modelJavaType": "org.apache.camel.model.dataformat.AvroDataFormat"
},
"properties": {
- "objectMapper": { "kind": "attribute", "displayName": "Object Mapper",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Lookup and use the existing ObjectMapper with the given id when using
Jackson." },
+ "objectMapper": { "kind": "attribute", "displayName": "Object Mapper",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Lookup and use the existing ObjectMapper with the given id when
using Jackson." },
"useDefaultObjectMapper": { "kind": "attribute", "displayName": "Use
Default Object Mapper", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether to lookup and use default Jackson
ObjectMapper from the registry." },
"unmarshalType": { "kind": "attribute", "displayName": "Unmarshal Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Class
name of the java type to use when unmarshalling" },
"jsonView": { "kind": "attribute", "displayName": "Json View", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "When marshalling a POJO to
JSON you might want to exclude certain fields from the JSON output. With
Jackson you can use JSON views to accomplish this. This option is to refer to
the class which has JsonView annotations" },
"include": { "kind": "attribute", "displayName": "Include", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "If you want to marshal a
pojo to JSON, and the pojo has some fields with null values. And you want to
skip these null values, you can set this option to NON_NULL" },
- "allowJmsType": { "kind": "attribute", "displayName": "Allow Jms Type",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Used for JMS users to allow the JMSType header from the
JMS spec to specify a FQN classname to use to unmarshal to." },
- "collectionType": { "kind": "attribute", "displayName": "Collection Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Refers to a custom collection type to lookup in the registry to use. This
option should rarely be used, but allows to use different collection types than
java.util.Collection based as default." },
+ "allowJmsType": { "kind": "attribute", "displayName": "Allow Jms Type",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Used for JMS users to allow the JMSType
header from the JMS spec to specify a FQN classname to use to unmarshal to." },
+ "collectionType": { "kind": "attribute", "displayName": "Collection Type",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Refers to a custom collection type to lookup in the registry to
use. This option should rarely be used, but allows to use different collection
types than java.util.Collection based as default." },
"useList": { "kind": "attribute", "displayName": "Use List", "required":
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description": "To
unmarshal to a List of Map or a List of Pojo." },
- "moduleClassNames": { "kind": "attribute", "displayName": "Module Class
Names", "required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "To
use custom Jackson modules com.fasterxml.jackson.databind.Module specified as a
String with FQN class names. Multiple classes can be separated by comma." },
- "moduleRefs": { "kind": "attribute", "displayName": "Module Refs",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "To
use custom Jackson modules referred from the Camel registry. Multiple modules
can be separated by comma." },
+ "moduleClassNames": { "kind": "attribute", "displayName": "Module Class
Names", "label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "To use custom Jackson modules
com.fasterxml.jackson.databind.Module specified as a String with FQN class
names. Multiple classes can be separated by comma." },
+ "moduleRefs": { "kind": "attribute", "displayName": "Module Refs",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "To use custom Jackson modules referred from the Camel registry.
Multiple modules can be separated by comma." },
"enableFeatures": { "kind": "attribute", "displayName": "Enable Features",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Set
of features to enable on the Jackson
com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that
matches a enum from com.fasterxml.jackson.databind.SerializationFeature,
com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jack
[...]
"disableFeatures": { "kind": "attribute", "displayName": "Disable
Features", "required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Set
of features to disable on the Jackson
com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that
matches a enum from com.fasterxml.jackson.databind.SerializationFeature,
com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.j [...]
"allowUnmarshallType": { "kind": "attribute", "displayName": "Allow
Unmarshall Type", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "If enabled then Jackson is allowed to
attempt to use the CamelJacksonUnmarshalType header during the unmarshalling.
This should only be enabled when desired to be used." },
- "timezone": { "kind": "attribute", "displayName": "Timezone", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "If set then Jackson will
use the Timezone when marshalling\/unmarshalling." },
+ "timezone": { "kind": "attribute", "displayName": "Timezone", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "If set then Jackson will use the Timezone when
marshalling\/unmarshalling." },
"autoDiscoverObjectMapper": { "kind": "attribute", "displayName": "Auto
Discover Object Mapper", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "If set to true then Jackson will lookup
for an objectMapper into the registry" },
"contentTypeHeader": { "kind": "attribute", "displayName": "Content Type
Header", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether the data format should set the Content-Type header with
the type from the data format. For example application\/xml for data formats
marshalling to XML, or application\/json for data formats marshalling to JSON"
},
- "schemaResolver": { "kind": "attribute", "displayName": "Schema Resolver",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Optional schema resolver used to lookup schemas for the data in transit." },
- "autoDiscoverSchemaResolver": { "kind": "attribute", "displayName": "Auto
Discover Schema Resolver", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "When not disabled, the SchemaResolver
will be looked up into the registry" },
+ "schemaResolver": { "kind": "attribute", "displayName": "Schema Resolver",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Optional schema resolver used to lookup schemas for the data in
transit." },
+ "autoDiscoverSchemaResolver": { "kind": "attribute", "displayName": "Auto
Discover Schema Resolver", "label": "advanced", "required": false, "type":
"boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired":
false, "secret": false, "defaultValue": true, "description": "When not
disabled, the SchemaResolver will be looked up into the registry" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/barcode.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/barcode.json
index 092c155d..c617477 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/barcode.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/barcode.json
@@ -16,10 +16,10 @@
"modelJavaType": "org.apache.camel.model.dataformat.BarcodeDataFormat"
},
"properties": {
+ "barcodeFormat": { "kind": "attribute", "displayName": "Barcode Format",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Barcode format such as QR-Code" },
+ "imageType": { "kind": "attribute", "displayName": "Image Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Image
type of the barcode such as png" },
"width": { "kind": "attribute", "displayName": "Width", "required": false,
"type": "integer", "javaType": "java.lang.Integer", "deprecated": false,
"autowired": false, "secret": false, "description": "Width of the barcode" },
"height": { "kind": "attribute", "displayName": "Height", "required":
false, "type": "integer", "javaType": "java.lang.Integer", "deprecated": false,
"autowired": false, "secret": false, "description": "Height of the barcode" },
- "imageType": { "kind": "attribute", "displayName": "Image Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Image
type of the barcode such as png" },
- "barcodeFormat": { "kind": "attribute", "displayName": "Barcode Format",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Barcode format such as QR-Code" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/base64.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/base64.json
index 954d0d7..9a8b0e0 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/base64.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/base64.json
@@ -17,8 +17,8 @@
},
"properties": {
"lineLength": { "kind": "attribute", "displayName": "Line Length",
"required": false, "type": "integer", "javaType": "java.lang.Integer",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": "76",
"description": "To specific a maximum line length for the encoded data. By
default 76 is used." },
- "lineSeparator": { "kind": "attribute", "displayName": "Line Separator",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "The
line separators to use. Uses new line characters (CRLF) by default." },
- "urlSafe": { "kind": "attribute", "displayName": "Url Safe", "required":
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description":
"Instead of emitting '' and '\/' we emit '-' and '_' respectively. urlSafe is
only applied to encode operations. Decoding seamlessly handles both modes. Is
by default false." },
+ "lineSeparator": { "kind": "attribute", "displayName": "Line Separator",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "The line separators to use. Uses new line characters (CRLF) by
default." },
+ "urlSafe": { "kind": "attribute", "displayName": "Url Safe", "label":
"advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Instead of emitting '' and '\/' we emit
'-' and '_' respectively. urlSafe is only applied to encode operations.
Decoding seamlessly handles both modes. Is by default false." },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/beanio.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/beanio.json
index ab175e5..8de157a 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/beanio.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/beanio.json
@@ -21,7 +21,7 @@
"ignoreUnidentifiedRecords": { "kind": "attribute", "displayName": "Ignore
Unidentified Records", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to ignore unidentified records."
},
"ignoreUnexpectedRecords": { "kind": "attribute", "displayName": "Ignore
Unexpected Records", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to ignore unexpected records." },
"ignoreInvalidRecords": { "kind": "attribute", "displayName": "Ignore
Invalid Records", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to ignore invalid records." },
- "encoding": { "kind": "attribute", "displayName": "Encoding", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The charset to use. Is by
default the JVM platform default charset." },
+ "encoding": { "kind": "attribute", "displayName": "Encoding", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "The charset to use. Is by default the JVM platform default
charset." },
"beanReaderErrorHandlerType": { "kind": "attribute", "displayName": "Bean
Reader Error Handler Type", "label": "advanced", "required": false, "type":
"string", "javaType": "java.lang.String", "deprecated": false, "autowired":
false, "secret": false, "description": "To use a custom
org.apache.camel.dataformat.beanio.BeanIOErrorHandler as error handler while
parsing. Configure the fully qualified class name of the error handler. Notice
the options ignoreUnidentifiedRecords, ignoreUnexp [...]
"unmarshalSingleObject": { "kind": "attribute", "displayName": "Unmarshal
Single Object", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": false, "description": "This options controls
whether to unmarshal as a list of objects or as a single object only. The
former is the default mode, and the latter is only intended in special
use-cases where beanio maps the Camel mess [...]
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyCsv.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyCsv.json
index 73edd8c..5500778 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyCsv.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyCsv.json
@@ -18,9 +18,9 @@
"properties": {
"type": { "kind": "attribute", "displayName": "Type", "required": true,
"type": "enum", "javaType": "org.apache.camel.model.dataformat.BindyType",
"enum": [ "Csv", "Fixed", "KeyValue" ], "deprecated": false, "autowired":
false, "secret": false, "defaultValue": "Csv", "description": "Whether to use
Csv, Fixed, or KeyValue." },
"classType": { "kind": "attribute", "displayName": "Class Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of model class to use." },
- "locale": { "kind": "attribute", "displayName": "Locale", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "To configure a default
locale to use, such as us for united states. To use the JVM platform default
locale then use the name default" },
- "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap
Single Instance", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "When unmarshalling should a single
instance be unwrapped and returned instead of wrapped in a java.util.List." },
"allowEmptyStream": { "kind": "attribute", "displayName": "Allow Empty
Stream", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to allow empty streams in the unmarshal process.
If true, no exception will be thrown when a body without records is provided."
},
+ "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap
Single Instance", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": true, "description": "When unmarshalling
should a single instance be unwrapped and returned instead of wrapped in a
java.util.List." },
+ "locale": { "kind": "attribute", "displayName": "Locale", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "To configure a default locale to use, such as us for united
states. To use the JVM platform default locale then use the name default" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyFixed.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyFixed.json
index bb0b88a..9c1b634 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyFixed.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyFixed.json
@@ -18,9 +18,9 @@
"properties": {
"type": { "kind": "attribute", "displayName": "Type", "required": true,
"type": "enum", "javaType": "org.apache.camel.model.dataformat.BindyType",
"enum": [ "Csv", "Fixed", "KeyValue" ], "deprecated": false, "autowired":
false, "secret": false, "defaultValue": "Fixed", "description": "Whether to use
Csv, Fixed, or KeyValue." },
"classType": { "kind": "attribute", "displayName": "Class Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of model class to use." },
- "locale": { "kind": "attribute", "displayName": "Locale", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "To configure a default
locale to use, such as us for united states. To use the JVM platform default
locale then use the name default" },
- "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap
Single Instance", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "When unmarshalling should a single
instance be unwrapped and returned instead of wrapped in a java.util.List." },
"allowEmptyStream": { "kind": "attribute", "displayName": "Allow Empty
Stream", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to allow empty streams in the unmarshal process.
If true, no exception will be thrown when a body without records is provided."
},
+ "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap
Single Instance", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": true, "description": "When unmarshalling
should a single instance be unwrapped and returned instead of wrapped in a
java.util.List." },
+ "locale": { "kind": "attribute", "displayName": "Locale", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "To configure a default locale to use, such as us for united
states. To use the JVM platform default locale then use the name default" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyKvp.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyKvp.json
index a89de41..871f9c9 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyKvp.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/bindyKvp.json
@@ -18,9 +18,9 @@
"properties": {
"type": { "kind": "attribute", "displayName": "Type", "required": true,
"type": "enum", "javaType": "org.apache.camel.model.dataformat.BindyType",
"enum": [ "Csv", "Fixed", "KeyValue" ], "deprecated": false, "autowired":
false, "secret": false, "defaultValue": "KeyValue", "description": "Whether to
use Csv, Fixed, or KeyValue." },
"classType": { "kind": "attribute", "displayName": "Class Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of model class to use." },
- "locale": { "kind": "attribute", "displayName": "Locale", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "To configure a default
locale to use, such as us for united states. To use the JVM platform default
locale then use the name default" },
- "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap
Single Instance", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "When unmarshalling should a single
instance be unwrapped and returned instead of wrapped in a java.util.List." },
"allowEmptyStream": { "kind": "attribute", "displayName": "Allow Empty
Stream", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to allow empty streams in the unmarshal process.
If true, no exception will be thrown when a body without records is provided."
},
+ "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap
Single Instance", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": true, "description": "When unmarshalling
should a single instance be unwrapped and returned instead of wrapped in a
java.util.List." },
+ "locale": { "kind": "attribute", "displayName": "Locale", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "To configure a default locale to use, such as us for united
states. To use the JVM platform default locale then use the name default" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/cbor.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/cbor.json
index e2f319a..2a0615d 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/cbor.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/cbor.json
@@ -16,14 +16,14 @@
"modelJavaType": "org.apache.camel.model.dataformat.CBORDataFormat"
},
"properties": {
- "objectMapper": { "kind": "attribute", "displayName": "Object Mapper",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Lookup and use the existing CBOR ObjectMapper with the given id when using
Jackson." },
+ "objectMapper": { "kind": "attribute", "displayName": "Object Mapper",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Lookup and use the existing CBOR ObjectMapper with the given id
when using Jackson." },
"useDefaultObjectMapper": { "kind": "attribute", "displayName": "Use
Default Object Mapper", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether to lookup and use default Jackson
CBOR ObjectMapper from the registry." },
"unmarshalType": { "kind": "attribute", "displayName": "Unmarshal Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Class
name of the java type to use when unmarshalling" },
- "collectionType": { "kind": "attribute", "displayName": "Collection Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Refers to a custom collection type to lookup in the registry to use. This
option should rarely be used, but allows to use different collection types than
java.util.Collection based as default." },
+ "collectionType": { "kind": "attribute", "displayName": "Collection Type",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Refers to a custom collection type to lookup in the registry to
use. This option should rarely be used, but allows to use different collection
types than java.util.Collection based as default." },
"useList": { "kind": "attribute", "displayName": "Use List", "required":
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description": "To
unmarshal to a List of Map or a List of Pojo." },
"allowUnmarshallType": { "kind": "attribute", "displayName": "Allow
Unmarshall Type", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "If enabled then Jackson CBOR is allowed
to attempt to use the CamelCBORUnmarshalType header during the unmarshalling.
This should only be enabled when desired to be used." },
"prettyPrint": { "kind": "attribute", "displayName": "Pretty Print",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "To enable pretty printing output nicely formatted. Is by
default false." },
- "allowJmsType": { "kind": "attribute", "displayName": "Allow Jms Type",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Used for JMS users to allow the JMSType header from the
JMS spec to specify a FQN classname to use to unmarshal to." },
+ "allowJmsType": { "kind": "attribute", "displayName": "Allow Jms Type",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Used for JMS users to allow the JMSType
header from the JMS spec to specify a FQN classname to use to unmarshal to." },
"enableFeatures": { "kind": "attribute", "displayName": "Enable Features",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Set
of features to enable on the Jackson
com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that
matches a enum from com.fasterxml.jackson.databind.SerializationFeature,
com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jack
[...]
"disableFeatures": { "kind": "attribute", "displayName": "Disable
Features", "required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Set
of features to disable on the Jackson
com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that
matches a enum from com.fasterxml.jackson.databind.SerializationFeature,
com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.j [...]
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/crypto.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/crypto.json
index ca414e3..7a6f4b8 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/crypto.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/crypto.json
@@ -17,14 +17,14 @@
},
"properties": {
"algorithm": { "kind": "attribute", "displayName": "Algorithm",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "The
JCE algorithm name indicating the cryptographic algorithm that will be used." },
- "cryptoProvider": { "kind": "attribute", "displayName": "Crypto Provider",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "The
name of the JCE Security Provider that should be used." },
"keyRef": { "kind": "attribute", "displayName": "Key Ref", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Refers to the secret key
to lookup from the register to use." },
- "initVectorRef": { "kind": "attribute", "displayName": "Init Vector Ref",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description":
"Refers to a byte array containing the Initialization Vector that will be used
to initialize the Cipher." },
- "algorithmParameterRef": { "kind": "attribute", "displayName": "Algorithm
Parameter Ref", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "A JCE AlgorithmParameterSpec used to initialize the Cipher.
Will lookup the type using the given name as a
java.security.spec.AlgorithmParameterSpec type." },
- "buffersize": { "kind": "attribute", "displayName": "Buffersize",
"required": false, "type": "integer", "javaType": "java.lang.Integer",
"deprecated": false, "autowired": false, "secret": false, "description": "The
size of the buffer used in the signature process." },
+ "cryptoProvider": { "kind": "attribute", "displayName": "Crypto Provider",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "The name of the JCE Security Provider that should be used." },
+ "initVectorRef": { "kind": "attribute", "displayName": "Init Vector Ref",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Refers to a byte array containing the Initialization Vector
that will be used to initialize the Cipher." },
+ "algorithmParameterRef": { "kind": "attribute", "displayName": "Algorithm
Parameter Ref", "label": "advanced", "required": false, "type": "string",
"javaType": "java.lang.String", "deprecated": false, "autowired": false,
"secret": false, "description": "A JCE AlgorithmParameterSpec used to
initialize the Cipher. Will lookup the type using the given name as a
java.security.spec.AlgorithmParameterSpec type." },
+ "bufferSize": { "kind": "attribute", "displayName": "Buffer Size",
"required": false, "type": "integer", "javaType": "java.lang.Integer",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
"4096", "description": "The size of the buffer used in the signature process."
},
"macAlgorithm": { "kind": "attribute", "displayName": "Mac Algorithm",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
"HmacSHA1", "description": "The JCE algorithm name indicating the Message
Authentication algorithm." },
"shouldAppendHMAC": { "kind": "attribute", "displayName": "Should Append
HMAC", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Flag indicating that a Message Authentication Code should be
calculated and appended to the encrypted data." },
- "inline": { "kind": "attribute", "displayName": "Inline", "required":
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description":
"Flag indicating that the configured IV should be inlined into the encrypted
data stream. Is by default false." },
+ "inline": { "kind": "attribute", "displayName": "Inline", "label":
"advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Flag indicating that the configured IV
should be inlined into the encrypted data stream. Is by default false." },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/csv.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/csv.json
index c7e947e..7a77951 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/csv.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/csv.json
@@ -17,34 +17,34 @@
},
"properties": {
"formatRef": { "kind": "attribute", "displayName": "Format Ref", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "The reference format to use, it will be updated with the other
format options, the default value is CSVFormat.DEFAULT" },
- "formatName": { "kind": "attribute", "displayName": "Format Name",
"required": false, "type": "enum", "javaType": "java.lang.String", "enum": [
"DEFAULT", "EXCEL", "INFORMIX_UNLOAD", "INFORMIX_UNLOAD_CSV", "MYSQL",
"RFC4180" ], "deprecated": false, "autowired": false, "secret": false,
"description": "The name of the format to use, the default value is
CSVFormat.DEFAULT" },
- "commentMarkerDisabled": { "kind": "attribute", "displayName": "Comment
Marker Disabled", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Disables the comment marker of the
reference format." },
- "commentMarker": { "kind": "attribute", "displayName": "Comment Marker",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the comment marker of the reference format." },
+ "formatName": { "kind": "attribute", "displayName": "Format Name",
"label": "advanced", "required": false, "type": "enum", "javaType":
"java.lang.String", "enum": [ "DEFAULT", "EXCEL", "INFORMIX_UNLOAD",
"INFORMIX_UNLOAD_CSV", "MYSQL", "RFC4180" ], "deprecated": false, "autowired":
false, "secret": false, "defaultValue": "DEFAULT", "description": "The name of
the format to use, the default value is CSVFormat.DEFAULT" },
+ "commentMarkerDisabled": { "kind": "attribute", "displayName": "Comment
Marker Disabled", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": false, "description": "Disables the comment
marker of the reference format." },
+ "commentMarker": { "kind": "attribute", "displayName": "Comment Marker",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Sets the comment marker of the reference format." },
"delimiter": { "kind": "attribute", "displayName": "Delimiter",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the delimiter to use. The default value is , (comma)" },
- "escapeDisabled": { "kind": "attribute", "displayName": "Escape Disabled",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Use for disabling using escape character" },
- "escape": { "kind": "attribute", "displayName": "Escape", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the escape character
to use" },
+ "escapeDisabled": { "kind": "attribute", "displayName": "Escape Disabled",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Use for disabling using escape
character" },
+ "escape": { "kind": "attribute", "displayName": "Escape", "label":
"advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Sets the escape character to use" },
"headerDisabled": { "kind": "attribute", "displayName": "Header Disabled",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Use for disabling headers" },
"header": { "kind": "element", "displayName": "Header", "required": false,
"type": "array", "javaType": "java.util.List<java.lang.String>", "deprecated":
false, "autowired": false, "secret": false, "description": "To configure the
CSV headers" },
"allowMissingColumnNames": { "kind": "attribute", "displayName": "Allow
Missing Column Names", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to allow missing column names."
},
"ignoreEmptyLines": { "kind": "attribute", "displayName": "Ignore Empty
Lines", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to ignore empty lines." },
"ignoreSurroundingSpaces": { "kind": "attribute", "displayName": "Ignore
Surrounding Spaces", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to ignore surrounding spaces" },
- "nullStringDisabled": { "kind": "attribute", "displayName": "Null String
Disabled", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Used to disable null strings" },
- "nullString": { "kind": "attribute", "displayName": "Null String",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the null string" },
+ "nullStringDisabled": { "kind": "attribute", "displayName": "Null String
Disabled", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": false, "description": "Used to disable null
strings" },
+ "nullString": { "kind": "attribute", "displayName": "Null String",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Sets the null string" },
"quoteDisabled": { "kind": "attribute", "displayName": "Quote Disabled",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Used to disable quotes" },
"quote": { "kind": "attribute", "displayName": "Quote", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the quote which by
default is" },
"recordSeparatorDisabled": { "kind": "attribute", "displayName": "Record
Separator Disabled", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Used for disabling record separator" },
"recordSeparator": { "kind": "attribute", "displayName": "Record
Separator", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Sets the record separator (aka new line) which by default is
new line characters (CRLF)" },
"skipHeaderRecord": { "kind": "attribute", "displayName": "Skip Header
Record", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to skip the header record in the output" },
- "quoteMode": { "kind": "attribute", "displayName": "Quote Mode",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the quote mode" },
+ "quoteMode": { "kind": "attribute", "displayName": "Quote Mode",
"required": false, "type": "enum", "javaType": "java.lang.String", "enum": [
"ALL", "ALL_NON_NULL", "MINIMAL", "NON_NUMERIC", "NONE" ], "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the quote mode" },
"ignoreHeaderCase": { "kind": "attribute", "displayName": "Ignore Header
Case", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Sets whether or not to ignore case when accessing header
names." },
"trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description":
"Sets whether or not to trim leading and trailing blanks." },
"trailingDelimiter": { "kind": "attribute", "displayName": "Trailing
Delimiter", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Sets whether or not to add a trailing
delimiter." },
"marshallerFactoryRef": { "kind": "attribute", "displayName": "Marshaller
Factory Ref", "label": "advanced", "required": false, "type": "string",
"javaType": "java.lang.String", "deprecated": false, "autowired": false,
"secret": false, "description": "Sets the implementation of the
CsvMarshallerFactory interface which is able to customize
marshalling\/unmarshalling behavior by extending CsvMarshaller or creating it
from scratch." },
- "lazyLoad": { "kind": "attribute", "displayName": "Lazy Load", "required":
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description":
"Whether the unmarshalling should produce an iterator that reads the lines on
the fly or if all the lines must be read at one." },
+ "lazyLoad": { "kind": "attribute", "displayName": "Lazy Load", "label":
"advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether the unmarshalling should produce
an iterator that reads the lines on the fly or if all the lines must be read at
one." },
"useMaps": { "kind": "attribute", "displayName": "Use Maps", "required":
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description":
"Whether the unmarshalling should produce maps (HashMap)for the lines values
instead of lists. It requires to have header (either defined or collected)." },
"useOrderedMaps": { "kind": "attribute", "displayName": "Use Ordered
Maps", "required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether the unmarshalling should produce ordered maps
(LinkedHashMap) for the lines values instead of lists. It requires to have
header (either defined or collected)." },
- "recordConverterRef": { "kind": "attribute", "displayName": "Record
Converter Ref", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Refers to a custom CsvRecordConverter to lookup from the
registry to use." },
- "captureHeaderRecord": { "kind": "attribute", "displayName": "Capture
Header Record", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether the unmarshalling should capture
the header record and store it in the message header" },
+ "recordConverterRef": { "kind": "attribute", "displayName": "Record
Converter Ref", "label": "advanced", "required": false, "type": "string",
"javaType": "java.lang.String", "deprecated": false, "autowired": false,
"secret": false, "description": "Refers to a custom CsvRecordConverter to
lookup from the registry to use." },
+ "captureHeaderRecord": { "kind": "attribute", "displayName": "Capture
Header Record", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": false, "description": "Whether the
unmarshalling should capture the header record and store it in the message
header" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/bean.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/bean.json
index c1a7a26..daf4603 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/bean.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/bean.json
@@ -19,8 +19,8 @@
"ref": { "kind": "attribute", "displayName": "Ref", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Reference to an existing
bean (bean id) to lookup in the registry" },
"method": { "kind": "attribute", "displayName": "Method", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Name of method to call" },
"beanType": { "kind": "attribute", "displayName": "Bean Type", "required":
false, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Class name (fully
qualified) of the bean to use Will lookup in registry and if there is a single
instance of the same type, then the existing bean is used, otherwise a new bean
is created (requires a default no-arg constructor)." },
- "scope": { "kind": "attribute", "displayName": "Scope", "required": false,
"type": "enum", "javaType": "java.lang.String", "enum": [ "Singleton",
"Request", "Prototype" ], "deprecated": false, "autowired": false, "secret":
false, "defaultValue": "Singleton", "description": "Scope of bean. When using
singleton scope (default) the bean is created or looked up only once and reused
for the lifetime of the endpoint. The bean should be thread-safe in case
concurrent threads is calling the [...]
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "scope": { "kind": "attribute", "displayName": "Scope", "label":
"advanced", "required": false, "type": "enum", "javaType": "java.lang.String",
"enum": [ "Singleton", "Request", "Prototype" ], "deprecated": false,
"autowired": false, "secret": false, "defaultValue": "Singleton",
"description": "Scope of bean. When using singleton scope (default) the bean is
created or looked up only once and reused for the lifetime of the endpoint. The
bean should be thread-safe in case concurrent th [...]
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/datasonnet.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/datasonnet.json
index de027ec..6242c62 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/datasonnet.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/datasonnet.json
@@ -20,7 +20,7 @@
"bodyMediaType": { "kind": "attribute", "displayName": "Body Media Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "The
String representation of the message's body MediaType" },
"outputMediaType": { "kind": "attribute", "displayName": "Output Media
Type", "required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "The
String representation of the MediaType to output" },
"resultType": { "kind": "attribute", "displayName": "Result Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the class name of the result type (type from output) The default result type is
com.datasonnet.document.Document" },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/groovy.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/groovy.json
index 683824b..6df3d8c 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/groovy.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/groovy.json
@@ -17,7 +17,7 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/hl7terser.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/hl7terser.json
index c24124e..e95ea55 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/hl7terser.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/hl7terser.json
@@ -17,7 +17,7 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/joor.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/joor.json
index 208b2dad..0f8a5d6 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/joor.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/joor.json
@@ -17,10 +17,10 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "preCompile": { "kind": "attribute", "displayName": "Pre Compile",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether the expression should be pre compiled once during
initialization phase. If this is turned off, then the expression is reloaded
and compiled on each evaluation." },
+ "preCompile": { "kind": "attribute", "displayName": "Pre Compile",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether the expression should be pre
compiled once during initialization phase. If this is turned off, then the
expression is reloaded and compiled on each evaluation." },
+ "singleQuotes": { "kind": "attribute", "displayName": "Single Quotes",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether single quotes can be used as
replacement for double quotes. This is convenient when you need to work with
strings inside strings." },
"resultType": { "kind": "attribute", "displayName": "Result Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the class name of the result type (type from output)" },
- "singleQuotes": { "kind": "attribute", "displayName": "Single Quotes",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether single quotes can be used as replacement for double
quotes. This is convenient when you need to work with strings inside strings."
},
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/jsonpath.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/jsonpath.json
index 93ac882..736ac24 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/jsonpath.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/jsonpath.json
@@ -19,12 +19,12 @@
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
"resultType": { "kind": "attribute", "displayName": "Result Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Sets
the class name of the result type (type from output)" },
"suppressExceptions": { "kind": "attribute", "displayName": "Suppress
Exceptions", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to suppress exceptions such as
PathNotFoundException." },
- "allowSimple": { "kind": "attribute", "displayName": "Allow Simple",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to allow in inlined Simple exceptions in the JSONPath
expression" },
- "allowEasyPredicate": { "kind": "attribute", "displayName": "Allow Easy
Predicate", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether to allow using the easy predicate
parser to pre-parse predicates." },
+ "allowSimple": { "kind": "attribute", "displayName": "Allow Simple",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether to allow in inlined Simple
exceptions in the JSONPath expression" },
+ "allowEasyPredicate": { "kind": "attribute", "displayName": "Allow Easy
Predicate", "label": "advanced", "required": false, "type": "boolean",
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": true, "description": "Whether to allow using
the easy predicate parser to pre-parse predicates." },
"writeAsString": { "kind": "attribute", "displayName": "Write As String",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to write the output of each row\/element as a
JSON String value instead of a Map\/POJO value." },
- "headerName": { "kind": "attribute", "displayName": "Header Name",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of header to use as input, instead of the message body" },
- "option": { "kind": "attribute", "displayName": "Option", "required":
false, "type": "enum", "javaType": "java.lang.String", "enum": [
"DEFAULT_PATH_LEAF_TO_NULL", "ALWAYS_RETURN_LIST", "AS_PATH_LIST",
"SUPPRESS_EXCEPTIONS", "REQUIRE_PROPERTIES" ], "deprecated": false,
"autowired": false, "secret": false, "description": "To configure additional
options on JSONPath. Multiple values can be separated by comma." },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "headerName": { "kind": "attribute", "displayName": "Header Name",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Name of header to use as input, instead of the message body" },
+ "option": { "kind": "attribute", "displayName": "Option", "label":
"advanced", "required": false, "type": "enum", "javaType": "java.lang.String",
"enum": [ "DEFAULT_PATH_LEAF_TO_NULL", "ALWAYS_RETURN_LIST", "AS_PATH_LIST",
"SUPPRESS_EXCEPTIONS", "REQUIRE_PROPERTIES" ], "deprecated": false,
"autowired": false, "secret": false, "description": "To configure additional
options on JSONPath. Multiple values can be separated by comma." },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/mvel.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/mvel.json
index a23270b..fabb7f3 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/mvel.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/mvel.json
@@ -17,7 +17,7 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/ognl.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/ognl.json
index 6eca706..df01cd2 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/ognl.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/ognl.json
@@ -17,7 +17,7 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/spel.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/spel.json
index 3be50fb..58b958b 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/spel.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/spel.json
@@ -17,7 +17,7 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xpath.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xpath.json
index 7bb1146..1c92133 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xpath.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xpath.json
@@ -17,16 +17,16 @@
},
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
- "documentType": { "kind": "attribute", "displayName": "Document Type",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of class for document type The default value is org.w3c.dom.Document" },
+ "documentType": { "kind": "attribute", "displayName": "Document Type",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Name of class for document type The default value is
org.w3c.dom.Document" },
"resultType": { "kind": "attribute", "displayName": "Result Type",
"required": false, "type": "enum", "javaType": "java.lang.String", "enum": [
"NUMBER", "STRING", "BOOLEAN", "NODESET", "NODE" ], "deprecated": false,
"autowired": false, "secret": false, "defaultValue": "NODESET", "description":
"Sets the class name of the result type (type from output) The default result
type is NodeSet" },
- "saxon": { "kind": "attribute", "displayName": "Saxon", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": false, "description":
"Whether to use Saxon." },
+ "saxon": { "kind": "attribute", "displayName": "Saxon", "label":
"advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to use Saxon." },
"factoryRef": { "kind": "attribute", "displayName": "Factory Ref",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "References to a custom XPathFactory to lookup in the registry"
},
"objectModel": { "kind": "attribute", "displayName": "Object Model",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "The XPath object model to use" },
- "logNamespaces": { "kind": "attribute", "displayName": "Log Namespaces",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue":
false, "description": "Whether to log namespaces which can assist during
troubleshooting" },
- "headerName": { "kind": "attribute", "displayName": "Header Name",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of header to use as input, instead of the message body" },
+ "logNamespaces": { "kind": "attribute", "displayName": "Log Namespaces",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to log namespaces which can
assist during troubleshooting" },
+ "headerName": { "kind": "attribute", "displayName": "Header Name",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Name of header to use as input, instead of the message body" },
"threadSafety": { "kind": "attribute", "displayName": "Thread Safety",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": false, "description": "Whether to enable thread-safety for the
returned result of the xpath expression. This applies to when using NODESET as
the result type, and the returned set has multiple elements. In this situation
there can be thread-safety iss [...]
"preCompile": { "kind": "attribute", "displayName": "Pre Compile",
"label": "advanced", "required": false, "type": "boolean", "javaType":
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": true, "description": "Whether to enable pre-compiling the xpath
expression during initialization phase. pre-compile is enabled by default. This
can be used to turn off, for example in cases the compilation phase is desired
at the starting phase, such as i [...]
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xquery.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xquery.json
index f717b10..d675617 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xquery.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xquery.json
@@ -18,9 +18,9 @@
"properties": {
"expression": { "kind": "value", "displayName": "Expression", "required":
true, "type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "The expression value in
your chosen language syntax" },
"type": { "kind": "attribute", "displayName": "Type", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the class name of the
result type (type from output) The default result type is NodeSet" },
- "headerName": { "kind": "attribute", "displayName": "Header Name",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of header to use as input, instead of the message body" },
+ "headerName": { "kind": "attribute", "displayName": "Header Name",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Name of header to use as input, instead of the message body" },
"configurationRef": { "kind": "attribute", "displayName": "Configuration
Ref", "label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Reference to a saxon configuration instance in the registry to
use for xquery (requires camel-saxon). This may be needed to add custom
functions to a saxon configuration, so these custom functions can be used in
xquery expressions." },
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xtokenize.json
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xtokenize.json
index c529b20..ed50ca4 100644
---
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xtokenize.json
+++
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/languages/xtokenize.json
@@ -16,10 +16,10 @@
"modelJavaType": "org.apache.camel.model.language.XMLTokenizerExpression"
},
"properties": {
- "headerName": { "kind": "attribute", "displayName": "Header Name",
"required": false, "type": "string", "javaType": "java.lang.String",
"deprecated": false, "autowired": false, "secret": false, "description": "Name
of header to tokenize instead of using the message body." },
- "mode": { "kind": "attribute", "displayName": "Mode", "required": false,
"type": "enum", "javaType": "java.lang.String", "enum": [ "i", "w", "u", "t" ],
"deprecated": false, "autowired": false, "secret": false, "description": "The
extraction mode. The available extraction modes are: i - injecting the
contextual namespace bindings into the extracted token (default) w - wrapping
the extracted token in its ancestor context u - unwrapping the extracted token
to its child content t - extr [...]
- "group": { "kind": "attribute", "displayName": "Group", "required": false,
"type": "integer", "javaType": "java.lang.Integer", "deprecated": false,
"autowired": false, "secret": false, "description": "To group N parts together"
},
- "trim": { "kind": "attribute", "displayName": "Trim", "required": false,
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false,
"autowired": false, "secret": false, "defaultValue": true, "description":
"Whether to trim the value to remove leading and trailing whitespaces and line
breaks" },
+ "headerName": { "kind": "attribute", "displayName": "Header Name",
"label": "advanced", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"description": "Name of header to tokenize instead of using the message body."
},
+ "mode": { "kind": "attribute", "displayName": "Mode", "label": "advanced",
"required": false, "type": "enum", "javaType": "java.lang.String", "enum": [
"i", "w", "u", "t" ], "deprecated": false, "autowired": false, "secret": false,
"description": "The extraction mode. The available extraction modes are: i -
injecting the contextual namespace bindings into the extracted token (default)
w - wrapping the extracted token in its ancestor context u - unwrapping the
extracted token to its c [...]
+ "group": { "kind": "attribute", "displayName": "Group", "label":
"advanced", "required": false, "type": "integer", "javaType":
"java.lang.Integer", "deprecated": false, "autowired": false, "secret": false,
"description": "To group N parts together" },
+ "trim": { "kind": "attribute", "displayName": "Trim", "label": "advanced",
"required": false, "type": "boolean", "javaType": "java.lang.Boolean",
"deprecated": false, "autowired": false, "secret": false, "defaultValue": true,
"description": "Whether to trim the value to remove leading and trailing
whitespaces and line breaks" },
"id": { "kind": "attribute", "displayName": "Id", "required": false,
"type": "string", "javaType": "java.lang.String", "deprecated": false,
"autowired": false, "secret": false, "description": "Sets the id of this node" }
}
}
diff --git
a/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
b/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
index 0a4e80f..2abc30c 100644
---
a/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
+++
b/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
@@ -46,6 +46,11 @@ public class Any23DataFormatConfiguration
*/
private Any23OutputFormat outputFormat = Any23OutputFormat.RDF4JMODEL;
/**
+ * The URI to use as base for building RDF entities if only relative paths
+ * are provided.
+ */
+ private String baseUri;
+ /**
* Configurations for Apache Any23 as key-value pairs in order to customize
* the extraction process. The list of supported parameters can be found
* here. If not provided, a default configuration is used.
@@ -57,11 +62,6 @@ public class Any23DataFormatConfiguration
* available extractors are used.
*/
private List<String> extractors;
- /**
- * The URI to use as base for building RDF entities if only relative paths
- * are provided.
- */
- private String baseUri;
public Any23OutputFormat getOutputFormat() {
return outputFormat;
@@ -71,6 +71,14 @@ public class Any23DataFormatConfiguration
this.outputFormat = outputFormat;
}
+ public String getBaseUri() {
+ return baseUri;
+ }
+
+ public void setBaseUri(String baseUri) {
+ this.baseUri = baseUri;
+ }
+
public List<PropertyDefinition> getConfiguration() {
return configuration;
}
@@ -86,12 +94,4 @@ public class Any23DataFormatConfiguration
public void setExtractors(List<String> extractors) {
this.extractors = extractors;
}
-
- public String getBaseUri() {
- return baseUri;
- }
-
- public void setBaseUri(String baseUri) {
- this.baseUri = baseUri;
- }
}
\ No newline at end of file
diff --git a/components-starter/camel-asn1-starter/src/main/docs/asn1.json
b/components-starter/camel-asn1-starter/src/main/docs/asn1.json
index dda23c4..3febda0 100644
--- a/components-starter/camel-asn1-starter/src/main/docs/asn1.json
+++ b/components-starter/camel-asn1-starter/src/main/docs/asn1.json
@@ -33,7 +33,7 @@
{
"name": "camel.dataformat.asn1.using-iterator",
"type": "java.lang.Boolean",
- "description": "If the asn1 file has more then one entry, the setting
this option to true, allows to work with the splitter EIP, to split the data
using an iterator in a streaming mode.",
+ "description": "If the asn1 file has more than one entry, the setting
this option to true, allows working with the splitter EIP, to split the data
using an iterator in a streaming mode.",
"sourceType":
"org.apache.camel.dataformat.asn1.springboot.ASN1DataFormatConfiguration",
"defaultValue": false
}
diff --git
a/components-starter/camel-asn1-starter/src/main/java/org/apache/camel/dataformat/asn1/springboot/ASN1DataFormatConfiguration.java
b/components-starter/camel-asn1-starter/src/main/java/org/apache/camel/dataformat/asn1/springboot/ASN1DataFormatConfiguration.java
index 9591d07..69aae84 100644
---
a/components-starter/camel-asn1-starter/src/main/java/org/apache/camel/dataformat/asn1/springboot/ASN1DataFormatConfiguration.java
+++
b/components-starter/camel-asn1-starter/src/main/java/org/apache/camel/dataformat/asn1/springboot/ASN1DataFormatConfiguration.java
@@ -37,23 +37,15 @@ public class ASN1DataFormatConfiguration
*/
private Boolean enabled;
/**
- * If the asn1 file has more then one entry, the setting this option to
- * true, allows to work with the splitter EIP, to split the data using an
- * iterator in a streaming mode.
- */
- private Boolean usingIterator = false;
- /**
* Class to use when unmarshalling.
*/
private String unmarshalType;
-
- public Boolean getUsingIterator() {
- return usingIterator;
- }
-
- public void setUsingIterator(Boolean usingIterator) {
- this.usingIterator = usingIterator;
- }
+ /**
+ * If the asn1 file has more than one entry, the setting this option to
+ * true, allows working with the splitter EIP, to split the data using an
+ * iterator in a streaming mode.
+ */
+ private Boolean usingIterator = false;
public String getUnmarshalType() {
return unmarshalType;
@@ -62,4 +54,12 @@ public class ASN1DataFormatConfiguration
public void setUnmarshalType(String unmarshalType) {
this.unmarshalType = unmarshalType;
}
+
+ public Boolean getUsingIterator() {
+ return usingIterator;
+ }
+
+ public void setUsingIterator(Boolean usingIterator) {
+ this.usingIterator = usingIterator;
+ }
}
\ No newline at end of file
diff --git
a/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
b/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
index 8198662..e7c1140 100644
---
a/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
+++
b/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
@@ -37,36 +37,28 @@ public class BarcodeDataFormatConfiguration
*/
private Boolean enabled;
/**
- * Width of the barcode
- */
- private Integer width;
- /**
- * Height of the barcode
+ * Barcode format such as QR-Code
*/
- private Integer height;
+ private String barcodeFormat;
/**
* Image type of the barcode such as png
*/
private String imageType;
/**
- * Barcode format such as QR-Code
+ * Width of the barcode
*/
- private String barcodeFormat;
-
- public Integer getWidth() {
- return width;
- }
-
- public void setWidth(Integer width) {
- this.width = width;
- }
+ private Integer width;
+ /**
+ * Height of the barcode
+ */
+ private Integer height;
- public Integer getHeight() {
- return height;
+ public String getBarcodeFormat() {
+ return barcodeFormat;
}
- public void setHeight(Integer height) {
- this.height = height;
+ public void setBarcodeFormat(String barcodeFormat) {
+ this.barcodeFormat = barcodeFormat;
}
public String getImageType() {
@@ -77,11 +69,19 @@ public class BarcodeDataFormatConfiguration
this.imageType = imageType;
}
- public String getBarcodeFormat() {
- return barcodeFormat;
+ public Integer getWidth() {
+ return width;
}
- public void setBarcodeFormat(String barcodeFormat) {
- this.barcodeFormat = barcodeFormat;
+ public void setWidth(Integer width) {
+ this.width = width;
+ }
+
+ public Integer getHeight() {
+ return height;
+ }
+
+ public void setHeight(Integer height) {
+ this.height = height;
}
}
\ No newline at end of file
diff --git
a/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
b/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
index aca5df5..7ab517d 100644
---
a/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
+++
b/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
@@ -46,20 +46,20 @@ public class BindyCsvDataFormatConfiguration
*/
private String classType;
/**
- * To configure a default locale to use, such as us for united states. To
- * use the JVM platform default locale then use the name default
+ * Whether to allow empty streams in the unmarshal process. If true, no
+ * exception will be thrown when a body without records is provided.
*/
- private String locale;
+ private Boolean allowEmptyStream = false;
/**
* When unmarshalling should a single instance be unwrapped and returned
* instead of wrapped in a java.util.List.
*/
private Boolean unwrapSingleInstance = true;
/**
- * Whether to allow empty streams in the unmarshal process. If true, no
- * exception will be thrown when a body without records is provided.
+ * To configure a default locale to use, such as us for united states. To
+ * use the JVM platform default locale then use the name default
*/
- private Boolean allowEmptyStream = false;
+ private String locale;
public String getType() {
return type;
@@ -77,12 +77,12 @@ public class BindyCsvDataFormatConfiguration
this.classType = classType;
}
- public String getLocale() {
- return locale;
+ public Boolean getAllowEmptyStream() {
+ return allowEmptyStream;
}
- public void setLocale(String locale) {
- this.locale = locale;
+ public void setAllowEmptyStream(Boolean allowEmptyStream) {
+ this.allowEmptyStream = allowEmptyStream;
}
public Boolean getUnwrapSingleInstance() {
@@ -93,11 +93,11 @@ public class BindyCsvDataFormatConfiguration
this.unwrapSingleInstance = unwrapSingleInstance;
}
- public Boolean getAllowEmptyStream() {
- return allowEmptyStream;
+ public String getLocale() {
+ return locale;
}
- public void setAllowEmptyStream(Boolean allowEmptyStream) {
- this.allowEmptyStream = allowEmptyStream;
+ public void setLocale(String locale) {
+ this.locale = locale;
}
}
\ No newline at end of file
diff --git
a/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
b/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
index 0f66660..3711ab1 100644
---
a/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
+++
b/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
@@ -46,20 +46,20 @@ public class BindyFixedLengthDataFormatConfiguration
*/
private String classType;
/**
- * To configure a default locale to use, such as us for united states. To
- * use the JVM platform default locale then use the name default
+ * Whether to allow empty streams in the unmarshal process. If true, no
+ * exception will be thrown when a body without records is provided.
*/
- private String locale;
+ private Boolean allowEmptyStream = false;
/**
* When unmarshalling should a single instance be unwrapped and returned
* instead of wrapped in a java.util.List.
*/
private Boolean unwrapSingleInstance = true;
/**
- * Whether to allow empty streams in the unmarshal process. If true, no
- * exception will be thrown when a body without records is provided.
+ * To configure a default locale to use, such as us for united states. To
+ * use the JVM platform default locale then use the name default
*/
- private Boolean allowEmptyStream = false;
+ private String locale;
public String getType() {
return type;
@@ -77,12 +77,12 @@ public class BindyFixedLengthDataFormatConfiguration
this.classType = classType;
}
- public String getLocale() {
- return locale;
+ public Boolean getAllowEmptyStream() {
+ return allowEmptyStream;
}
- public void setLocale(String locale) {
- this.locale = locale;
+ public void setAllowEmptyStream(Boolean allowEmptyStream) {
+ this.allowEmptyStream = allowEmptyStream;
}
public Boolean getUnwrapSingleInstance() {
@@ -93,11 +93,11 @@ public class BindyFixedLengthDataFormatConfiguration
this.unwrapSingleInstance = unwrapSingleInstance;
}
- public Boolean getAllowEmptyStream() {
- return allowEmptyStream;
+ public String getLocale() {
+ return locale;
}
- public void setAllowEmptyStream(Boolean allowEmptyStream) {
- this.allowEmptyStream = allowEmptyStream;
+ public void setLocale(String locale) {
+ this.locale = locale;
}
}
\ No newline at end of file
diff --git
a/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
b/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
index e315174..d39cee9 100644
---
a/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
+++
b/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
@@ -46,20 +46,20 @@ public class BindyKeyValuePairDataFormatConfiguration
*/
private String classType;
/**
- * To configure a default locale to use, such as us for united states. To
- * use the JVM platform default locale then use the name default
+ * Whether to allow empty streams in the unmarshal process. If true, no
+ * exception will be thrown when a body without records is provided.
*/
- private String locale;
+ private Boolean allowEmptyStream = false;
/**
* When unmarshalling should a single instance be unwrapped and returned
* instead of wrapped in a java.util.List.
*/
private Boolean unwrapSingleInstance = true;
/**
- * Whether to allow empty streams in the unmarshal process. If true, no
- * exception will be thrown when a body without records is provided.
+ * To configure a default locale to use, such as us for united states. To
+ * use the JVM platform default locale then use the name default
*/
- private Boolean allowEmptyStream = false;
+ private String locale;
public String getType() {
return type;
@@ -77,12 +77,12 @@ public class BindyKeyValuePairDataFormatConfiguration
this.classType = classType;
}
- public String getLocale() {
- return locale;
+ public Boolean getAllowEmptyStream() {
+ return allowEmptyStream;
}
- public void setLocale(String locale) {
- this.locale = locale;
+ public void setAllowEmptyStream(Boolean allowEmptyStream) {
+ this.allowEmptyStream = allowEmptyStream;
}
public Boolean getUnwrapSingleInstance() {
@@ -93,11 +93,11 @@ public class BindyKeyValuePairDataFormatConfiguration
this.unwrapSingleInstance = unwrapSingleInstance;
}
- public Boolean getAllowEmptyStream() {
- return allowEmptyStream;
+ public String getLocale() {
+ return locale;
}
- public void setAllowEmptyStream(Boolean allowEmptyStream) {
- this.allowEmptyStream = allowEmptyStream;
+ public void setLocale(String locale) {
+ this.locale = locale;
}
}
\ No newline at end of file
diff --git a/components-starter/camel-crypto-starter/src/main/docs/crypto.json
b/components-starter/camel-crypto-starter/src/main/docs/crypto.json
index aa2ec4f..ebfb3c8 100644
--- a/components-starter/camel-crypto-starter/src/main/docs/crypto.json
+++ b/components-starter/camel-crypto-starter/src/main/docs/crypto.json
@@ -190,10 +190,11 @@
"sourceType":
"org.apache.camel.converter.crypto.springboot.CryptoDataFormatConfiguration"
},
{
- "name": "camel.dataformat.crypto.buffersize",
+ "name": "camel.dataformat.crypto.buffer-size",
"type": "java.lang.Integer",
"description": "The size of the buffer used in the signature process.",
- "sourceType":
"org.apache.camel.converter.crypto.springboot.CryptoDataFormatConfiguration"
+ "sourceType":
"org.apache.camel.converter.crypto.springboot.CryptoDataFormatConfiguration",
+ "defaultValue": 4096
},
{
"name": "camel.dataformat.crypto.crypto-provider",
diff --git
a/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
b/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
index f715fa0..5e63fe2 100644
---
a/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
+++
b/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
@@ -42,14 +42,14 @@ public class CryptoDataFormatConfiguration
*/
private String algorithm;
/**
- * The name of the JCE Security Provider that should be used.
- */
- private String cryptoProvider;
- /**
* Refers to the secret key to lookup from the register to use.
*/
private String keyRef;
/**
+ * The name of the JCE Security Provider that should be used.
+ */
+ private String cryptoProvider;
+ /**
* Refers to a byte array containing the Initialization Vector that will be
* used to initialize the Cipher.
*/
@@ -63,7 +63,7 @@ public class CryptoDataFormatConfiguration
/**
* The size of the buffer used in the signature process.
*/
- private Integer buffersize;
+ private Integer bufferSize = 4096;
/**
* The JCE algorithm name indicating the Message Authentication algorithm.
*/
@@ -87,14 +87,6 @@ public class CryptoDataFormatConfiguration
this.algorithm = algorithm;
}
- public String getCryptoProvider() {
- return cryptoProvider;
- }
-
- public void setCryptoProvider(String cryptoProvider) {
- this.cryptoProvider = cryptoProvider;
- }
-
public String getKeyRef() {
return keyRef;
}
@@ -103,6 +95,14 @@ public class CryptoDataFormatConfiguration
this.keyRef = keyRef;
}
+ public String getCryptoProvider() {
+ return cryptoProvider;
+ }
+
+ public void setCryptoProvider(String cryptoProvider) {
+ this.cryptoProvider = cryptoProvider;
+ }
+
public String getInitVectorRef() {
return initVectorRef;
}
@@ -119,12 +119,12 @@ public class CryptoDataFormatConfiguration
this.algorithmParameterRef = algorithmParameterRef;
}
- public Integer getBuffersize() {
- return buffersize;
+ public Integer getBufferSize() {
+ return bufferSize;
}
- public void setBuffersize(Integer buffersize) {
- this.buffersize = buffersize;
+ public void setBufferSize(Integer bufferSize) {
+ this.bufferSize = bufferSize;
}
public String getMacAlgorithm() {
diff --git a/components-starter/camel-csv-starter/src/main/docs/csv.json
b/components-starter/camel-csv-starter/src/main/docs/csv.json
index 7f1e29e..b8e6826 100644
--- a/components-starter/camel-csv-starter/src/main/docs/csv.json
+++ b/components-starter/camel-csv-starter/src/main/docs/csv.json
@@ -74,7 +74,8 @@
"name": "camel.dataformat.csv.format-name",
"type": "java.lang.String",
"description": "The name of the format to use, the default value is
CSVFormat.DEFAULT",
- "sourceType":
"org.apache.camel.dataformat.csv.springboot.CsvDataFormatConfiguration"
+ "sourceType":
"org.apache.camel.dataformat.csv.springboot.CsvDataFormatConfiguration",
+ "defaultValue": "DEFAULT"
},
{
"name": "camel.dataformat.csv.format-ref",
diff --git
a/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
b/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
index dea0af5..3dd0d4b 100644
---
a/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
+++
b/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
@@ -45,7 +45,7 @@ public class CsvDataFormatConfiguration
/**
* The name of the format to use, the default value is CSVFormat.DEFAULT
*/
- private String formatName;
+ private String formatName = "DEFAULT";
/**
* Disables the comment marker of the reference format.
*/