This is an automated email from the ASF dual-hosted git repository. jpoth pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from 5f01118 Fix typo new 6a98e0b Lets make the camel-api-component-maven-plugin handle generic methods with non generic return types new 388db1b FHIR component add extended operations support The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../camel/util/component/ApiMethodParser.java | 13 +- .../component/ArgumentSubstitutionParserTest.java | 9 +- .../org/apache/camel/util/component/TestProxy.java | 4 + components/camel-fhir/camel-fhir-api/pom.xml | 4 + .../camel/component/fhir/api/FhirHistory.java | 2 +- .../camel/component/fhir/api/FhirOperation.java | 202 +++++++++++++++++++++ components/camel-fhir/camel-fhir-component/pom.xml | 12 ++ .../signatures/operation-sig-api.txt | 21 +++ .../src/main/docs/fhir-component.adoc | 1 + .../apache/camel/component/fhir/FhirEndpoint.java | 4 + .../camel/component/fhir/FhirOperationIT.java | 192 ++++++++++++++++++++ .../apache/camel/component/fhir/FhirPatchIT.java | 1 - 12 files changed, 458 insertions(+), 7 deletions(-) create mode 100644 components/camel-fhir/camel-fhir-api/src/main/java/org/apache/camel/component/fhir/api/FhirOperation.java create mode 100644 components/camel-fhir/camel-fhir-component/signatures/operation-sig-api.txt create mode 100644 components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/FhirOperationIT.java