This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 6cefb9dabc94dec7fe058b6a956135da78b97f80 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Jan 26 20:02:56 2026 +0000 (chores): ensure usage of text blocks components/camel-aws/camel-aws2-ddb --- .../org/apache/camel/component/aws2/ddb/Ddb2Constants.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Constants.java b/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Constants.java index 36cc035a252e..5538cc9060f4 100644 --- a/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Constants.java +++ b/components/camel-aws/camel-aws2-ddb/src/main/java/org/apache/camel/component/aws2/ddb/Ddb2Constants.java @@ -25,8 +25,9 @@ public interface Ddb2Constants { @Metadata(label = "DeleteItem GetItem PutItem UpdateItem", description = "The list of attributes returned by the operation.", javaType = "Map<String, AttributeValue>") String ATTRIBUTES = "CamelAwsDdbAttributes"; - @Metadata(description = "If attribute names are not specified then all attributes will be\n" + - "returned.", + @Metadata(description = """ + If attribute names are not specified then all attributes will be + returned.""", javaType = "Collection<String>") String ATTRIBUTE_NAMES = "CamelAwsDdbAttributeNames"; @Metadata(description = "A map of the table name and corresponding items to get by primary key.", @@ -35,8 +36,9 @@ public interface Ddb2Constants { @Metadata(label = "BatchGetItems", description = "Table names and the respective item attributes from the tables.", javaType = "Map<String, BatchResponse>") String BATCH_RESPONSE = "CamelAwsDdbBatchResponse"; - @Metadata(description = "If set to true, then a consistent read is issued, otherwise eventually\n" + - "consistent is used.", + @Metadata(description = """ + If set to true, then a consistent read is issued, otherwise eventually + consistent is used.""", javaType = "Boolean") String CONSISTENT_READ = "CamelAwsDdbConsistentRead"; @Metadata(label = "Query Scan", description = "The number of Capacity Units of the provisioned throughput of the table\n" +
