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 c82dbf97b5cbd0244099e0c0c0f6fcc65e5b95a6 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Jan 26 20:27:28 2026 +0000 (chores): ensure usage of text blocks components/camel-grpc --- .../java/org/apache/camel/component/grpc/GrpcConstants.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConstants.java b/components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConstants.java index 8aae089333db..bbb140e20d81 100644 --- a/components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConstants.java +++ b/components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConstants.java @@ -50,11 +50,14 @@ public interface GrpcConstants { description = "If provided, the given agent will prepend the gRPC library's user agent information", javaType = "String") String GRPC_USER_AGENT_HEADER = "CamelGrpcUserAgent"; - @org.apache.camel.spi.Metadata(label = "consumer", description = "Received event type from the sent request.\n\n" + - "Possible values:\n\n" + - "* onNext\n" + - "* onCompleted\n" + - "* onError", + @org.apache.camel.spi.Metadata(label = "consumer", description = """ + Received event type from the sent request. + + Possible values: + + * onNext + * onCompleted + * onError""", javaType = "String") String GRPC_EVENT_TYPE_HEADER = "CamelGrpcEventType";
