use of org.apache.camel.component.hl7.HL7DataFormat in project camel by apache.
the class HL7DataFormatAutoConfiguration method configureHL7DataFormatFactory.
@Bean(name = "hl7-dataformat-factory")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(HL7DataFormat.class)
public DataFormatFactory configureHL7DataFormatFactory(final CamelContext camelContext, final HL7DataFormatConfiguration configuration) {
return new DataFormatFactory() {
public DataFormat newInstance() {
HL7DataFormat dataformat = new HL7DataFormat();
if (CamelContextAware.class.isAssignableFrom(HL7DataFormat.class)) {
CamelContextAware contextAware = CamelContextAware.class.cast(dataformat);
if (contextAware != null) {
contextAware.setCamelContext(camelContext);
}
}
try {
Map<String, Object> parameters = new HashMap<>();
IntrospectionSupport.getProperties(configuration, parameters, null, false);
IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), dataformat, parameters);
} catch (Exception e) {
throw new RuntimeCamelException(e);
}
return dataformat;
}
};
}
use of org.apache.camel.component.hl7.HL7DataFormat in project quickstarts by jboss-switchyard.
the class CamelServiceRoute method configure.
/**
* The Camel route is configured via this method. The from endpoint is required to be a SwitchYard service.
*/
public void configure() {
DataFormat hl7 = new HL7DataFormat();
from("switchyard://HL7Route").unmarshal(hl7).process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
String body = exchange.getIn().getBody(String.class);
PipeParser pipeParser = new PipeParser();
try {
// Parse the HL7 message
ca.uhn.hl7v2.model.Message message = pipeParser.parse(body);
if (message instanceof QRY_A19) {
// Print out some details from the QRD
QRD qrd = (QRD) message.get("QRD");
System.out.println("Query Date/Time : " + qrd.getQueryDateTime().getTimeOfAnEvent().getValue());
System.out.println("Query Format Code : " + qrd.getQueryFormatCode().getValue());
System.out.println("Query Priority : " + qrd.getQueryPriority().getValue());
System.out.println("Query ID : " + qrd.getQueryID().getValue());
System.out.println("Deferred Response Type : " + qrd.getDeferredResponseType().getValue());
System.out.println("Deferred Response Date/Time : " + qrd.getDeferredResponseDateTime().getTimeOfAnEvent().getValue());
System.out.println("Quantity Limited Request : " + qrd.getQuantityLimitedRequest().getQuantity().getValue());
System.out.println("Query Results Level : " + qrd.getQueryResultsLevel().getValue());
qrd.getQueryID();
}
} catch (Exception e) {
throw e;
}
SwitchYardMessage out = new SwitchYardMessage();
out.setBody(body);
exchange.setOut(out);
}
});
}
Aggregations