Search in sources :

Example 36 with ParametersParameterComponent

use of org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent in project camel-quarkus by apache.

the class FhirDstu3Resource method operationOnType.

@Path("/operation/onType")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String operationOnType() {
    Map<String, Object> headers = new HashMap<>();
    headers.put("CamelFhir.resourceType", Patient.class);
    headers.put("CamelFhir.name", "everything");
    headers.put("CamelFhir.parameters", null);
    headers.put("CamelFhir.outputParameterType", Parameters.class);
    headers.put("CamelFhir.useHttpGet", Boolean.FALSE);
    headers.put("CamelFhir.returnType", null);
    headers.put("CamelFhir.extraParameters", null);
    Parameters result = producerTemplate.requestBodyAndHeaders("direct:operationOnType-dstu3", null, headers, Parameters.class);
    Parameters.ParametersParameterComponent parametersParameterComponent = result.getParameter().get(0);
    Bundle bundle = (Bundle) parametersParameterComponent.getResource();
    Bundle.BundleEntryComponent bundleEntryComponent = bundle.getEntry().get(0);
    return bundleEntryComponent.getResource().getIdElement().toUnqualifiedVersionless().getValue();
}
Also used : ExtraParameters(org.apache.camel.component.fhir.api.ExtraParameters) Parameters(org.hl7.fhir.dstu3.model.Parameters) HashMap(java.util.HashMap) Bundle(org.hl7.fhir.dstu3.model.Bundle) IBaseBundle(org.hl7.fhir.instance.model.api.IBaseBundle) JsonObject(javax.json.JsonObject) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 37 with ParametersParameterComponent

use of org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent in project camel-quarkus by apache.

the class FhirDstu3Resource method operationOnInstance.

// ///////////////////
// Operation
// ///////////////////
@Path("/operation/onInstance")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String operationOnInstance(@QueryParam("id") String id) {
    IdType iIdType = new IdType(id);
    Map<String, Object> headers = new HashMap<>();
    headers.put("CamelFhir.id", iIdType);
    headers.put("CamelFhir.name", "everything");
    headers.put("CamelFhir.parameters", null);
    headers.put("CamelFhir.outputParameterType", Parameters.class);
    headers.put("CamelFhir.useHttpGet", Boolean.FALSE);
    headers.put("CamelFhir.returnType", null);
    headers.put("CamelFhir.extraParameters", null);
    Parameters result = producerTemplate.requestBodyAndHeaders("direct:operationOnInstance-dstu3", null, headers, Parameters.class);
    Parameters.ParametersParameterComponent parametersParameterComponent = result.getParameter().get(0);
    Bundle bundle = (Bundle) parametersParameterComponent.getResource();
    Bundle.BundleEntryComponent bundleEntryComponent = bundle.getEntry().get(0);
    return bundleEntryComponent.getResource().getIdElement().toUnqualifiedVersionless().getValue();
}
Also used : ExtraParameters(org.apache.camel.component.fhir.api.ExtraParameters) Parameters(org.hl7.fhir.dstu3.model.Parameters) HashMap(java.util.HashMap) Bundle(org.hl7.fhir.dstu3.model.Bundle) IBaseBundle(org.hl7.fhir.instance.model.api.IBaseBundle) JsonObject(javax.json.JsonObject) IdType(org.hl7.fhir.dstu3.model.IdType) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 38 with ParametersParameterComponent

use of org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent in project camel-quarkus by apache.

the class FhirDstu2_1Resource method operationOnInstanceVersion.

@Path("/operation/onInstanceVersion")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String operationOnInstanceVersion(@QueryParam("id") String id) {
    IdType iIdType = new IdType(id);
    Map<String, Object> headers = new HashMap<>();
    headers.put("CamelFhir.id", iIdType);
    headers.put("CamelFhir.name", "everything");
    headers.put("CamelFhir.parameters", null);
    headers.put("CamelFhir.outputParameterType", Parameters.class);
    headers.put("CamelFhir.useHttpGet", Boolean.FALSE);
    headers.put("CamelFhir.returnType", null);
    headers.put("CamelFhir.extraParameters", null);
    Parameters result = producerTemplate.requestBodyAndHeaders("direct:operationOnInstanceVersion-dstu2-1", null, headers, Parameters.class);
    Parameters.ParametersParameterComponent parametersParameterComponent = result.getParameter().get(0);
    Bundle bundle = (Bundle) parametersParameterComponent.getResource();
    Bundle.BundleEntryComponent bundleEntryComponent = bundle.getEntry().get(0);
    return bundleEntryComponent.getResource().getIdElement().toUnqualifiedVersionless().getValue();
}
Also used : Parameters(org.hl7.fhir.dstu2016may.model.Parameters) ExtraParameters(org.apache.camel.component.fhir.api.ExtraParameters) HashMap(java.util.HashMap) Bundle(org.hl7.fhir.dstu2016may.model.Bundle) IBaseBundle(org.hl7.fhir.instance.model.api.IBaseBundle) JsonObject(javax.json.JsonObject) IdType(org.hl7.fhir.dstu2016may.model.IdType) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 39 with ParametersParameterComponent

use of org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent in project camel-quarkus by apache.

the class FhirR5Resource method operationOnInstance.

// ///////////////////
// Operation
// ///////////////////
@Path("/operation/onInstance")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String operationOnInstance(@QueryParam("id") String id) {
    IdType iIdType = new IdType(id);
    Map<String, Object> headers = new HashMap<>();
    headers.put("CamelFhir.id", iIdType);
    headers.put("CamelFhir.name", "everything");
    headers.put("CamelFhir.parameters", null);
    headers.put("CamelFhir.outputParameterType", Parameters.class);
    headers.put("CamelFhir.useHttpGet", Boolean.FALSE);
    headers.put("CamelFhir.returnType", null);
    headers.put("CamelFhir.extraParameters", null);
    Parameters result = producerTemplate.requestBodyAndHeaders("direct:operationOnInstance-r5", null, headers, Parameters.class);
    Parameters.ParametersParameterComponent parametersParameterComponent = result.getParameter().get(0);
    Bundle bundle = (Bundle) parametersParameterComponent.getResource();
    Bundle.BundleEntryComponent bundleEntryComponent = bundle.getEntry().get(0);
    return bundleEntryComponent.getResource().getIdElement().toUnqualifiedVersionless().getValue();
}
Also used : Parameters(org.hl7.fhir.r5.model.Parameters) ExtraParameters(org.apache.camel.component.fhir.api.ExtraParameters) HashMap(java.util.HashMap) IBaseBundle(org.hl7.fhir.instance.model.api.IBaseBundle) Bundle(org.hl7.fhir.r5.model.Bundle) JsonObject(javax.json.JsonObject) IdType(org.hl7.fhir.r5.model.IdType) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 40 with ParametersParameterComponent

use of org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent in project camel-quarkus by apache.

the class FhirR4Resource method operationOnInstanceVersion.

@Path("/operation/onInstanceVersion")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String operationOnInstanceVersion(@QueryParam("id") String id) {
    IdType iIdType = new IdType(id);
    Map<String, Object> headers = new HashMap<>();
    headers.put("CamelFhir.id", iIdType);
    headers.put("CamelFhir.name", "everything");
    headers.put("CamelFhir.parameters", null);
    headers.put("CamelFhir.outputParameterType", Parameters.class);
    headers.put("CamelFhir.useHttpGet", Boolean.FALSE);
    headers.put("CamelFhir.returnType", null);
    headers.put("CamelFhir.extraParameters", null);
    Parameters result = producerTemplate.requestBodyAndHeaders("direct:operationOnInstanceVersion-r4", null, headers, Parameters.class);
    ParametersParameterComponent parametersParameterComponent = result.getParameter().get(0);
    Bundle bundle = (Bundle) parametersParameterComponent.getResource();
    BundleEntryComponent bundleEntryComponent = bundle.getEntry().get(0);
    return bundleEntryComponent.getResource().getIdElement().toUnqualifiedVersionless().getValue();
}
Also used : ExtraParameters(org.apache.camel.component.fhir.api.ExtraParameters) Parameters(org.hl7.fhir.r4.model.Parameters) BundleEntryComponent(org.hl7.fhir.r4.model.Bundle.BundleEntryComponent) HashMap(java.util.HashMap) IBaseBundle(org.hl7.fhir.instance.model.api.IBaseBundle) Bundle(org.hl7.fhir.r4.model.Bundle) JsonObject(javax.json.JsonObject) IdType(org.hl7.fhir.r4.model.IdType) ParametersParameterComponent(org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Aggregations

ParametersParameterComponent (org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent)26 Parameters (org.hl7.fhir.r4.model.Parameters)21 HashMap (java.util.HashMap)18 JsonObject (javax.json.JsonObject)15 GET (javax.ws.rs.GET)15 Path (javax.ws.rs.Path)15 Produces (javax.ws.rs.Produces)15 ExtraParameters (org.apache.camel.component.fhir.api.ExtraParameters)15 IBaseBundle (org.hl7.fhir.instance.model.api.IBaseBundle)15 FHIRException (org.hl7.fhir.exceptions.FHIRException)12 IOException (java.io.IOException)7 CodeType (org.hl7.fhir.r4.model.CodeType)7 URISyntaxException (java.net.URISyntaxException)6 Nonnull (javax.annotation.Nonnull)6 Parameters (org.hl7.fhir.dstu3.model.Parameters)6 ParametersParameterComponent (org.hl7.fhir.dstu3.model.Parameters.ParametersParameterComponent)6 Bundle (org.hl7.fhir.r4.model.Bundle)6 Slf4j (lombok.extern.slf4j.Slf4j)5 Parameters (org.hl7.fhir.dstu2.model.Parameters)5 Parameters (org.hl7.fhir.dstu2016may.model.Parameters)5