blob: e8b44d4281fd125c68942ceea3107cc06ac3f29b [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 javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import javax.inject.Named;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.parser.StrictErrorHandler;
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;
@ApplicationScoped
public class FhirR5RouteBuilder extends RouteBuilder {
private static final Boolean ENABLED = new FhirFlags.R5Enabled().getAsBoolean();
@Inject
@Named("R5")
FhirContext fhirContext;
@Override
public void configure() {
if (ENABLED) {
fhirContext.setParserErrorHandler(new StrictErrorHandler());
FhirJsonDataFormat fhirJsonDataFormat = new FhirJsonDataFormat();
fhirJsonDataFormat.setFhirContext(fhirContext);
fhirJsonDataFormat.setParserErrorHandler(new StrictErrorHandler());
FhirXmlDataFormat fhirXmlDataFormat = new FhirXmlDataFormat();
fhirXmlDataFormat.setFhirContext(fhirContext);
fhirXmlDataFormat.setParserErrorHandler(new StrictErrorHandler());
from("direct:json-to-r5")
.unmarshal(fhirJsonDataFormat)
.marshal(fhirJsonDataFormat);
from("direct:xml-to-r5")
.unmarshal(fhirXmlDataFormat)
.marshal(fhirXmlDataFormat);
from("direct:create-r5")
.to("fhir://create/resource?inBody=resourceAsString&fhirContext=#R5");
}
}
}