ppalaga commented on a change in pull request #2581: URL: https://github.com/apache/camel-quarkus/pull/2581#discussion_r631375642
########## File path: integration-tests/bean/src/main/java/org/apache/camel/quarkus/component/bean/BeanResource.java ########## @@ -142,4 +142,27 @@ public String parameterBindingAnnotations(String statement, @PathParam("greeting String.class); } + @Path("/produceInterface") + @POST + @Consumes(MediaType.TEXT_PLAIN) + @Produces(MediaType.TEXT_PLAIN) + public String produceInterface(String payload) { + produceInterface.sayHello(payload); Review comment: I have added a commit in https://github.com/apache/camel-quarkus/pull/2586 implementing your proposal, @aldettinger. Thanks for suggesting it! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org