blob: a6496ef72569bfac7e1672e61ab32bb121e9e8fb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.quarkus.component.fhir.it;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.FhirVersionEnum;
import ca.uhn.fhir.parser.StrictErrorHandler;
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.fhir.FhirJsonDataFormat;
import org.apache.camel.component.fhir.FhirXmlDataFormat;
import org.apache.camel.quarkus.component.fhir.FhirFlags;
public class FhirDstu3RouteBuilder extends RouteBuilder {
private static final Boolean ENABLED = new FhirFlags.Dstu3Enabled().getAsBoolean();
@Override
public void configure() {
if (ENABLED) {
CamelContext context = getContext();
FhirContext fhirContext = FhirContext.forDstu3();
fhirContext.setParserErrorHandler(new StrictErrorHandler());
context.getRegistry().bind("fhirContext", fhirContext);
FhirJsonDataFormat fhirJsonDataFormat = new FhirJsonDataFormat();
fhirJsonDataFormat.setFhirVersion(FhirVersionEnum.DSTU3.name());
fhirJsonDataFormat.setParserErrorHandler(new StrictErrorHandler());
FhirXmlDataFormat fhirXmlDataFormat = new FhirXmlDataFormat();
fhirXmlDataFormat.setFhirVersion(FhirVersionEnum.DSTU3.name());
fhirXmlDataFormat.setParserErrorHandler(new StrictErrorHandler());
from("direct:json-to-dstu3")
.unmarshal(fhirJsonDataFormat)
.marshal(fhirJsonDataFormat);
from("direct:xml-to-dstu3")
.unmarshal(fhirXmlDataFormat)
.marshal(fhirXmlDataFormat);
from("direct:create-dstu3")
.to("fhir://create/resource?inBody=resourceAsString&fhirVersion=DSTU3&fhirContext=#fhirContext");
}
}
}