All Downloads are FREE. Search and download functionalities are using the official Maven repository.

th.ipf.tutorials.ipf-tutorials-fhir.5.0-m3.source-code.context.xml Maven / Gradle / Ivy

<!--
  ~ Copyright 2015 the original author or authors.
  ~
  ~ Licensed 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.
  -->

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:camel="http://camel.apache.org/schema/spring"
    xmlns:ipf="http://openehealth.org/schema/ipf-commons-core"
    xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring
http://camel.apache.org/schema/spring/camel-spring.xsd 
http://openehealth.org/schema/ipf-commons-core
http://openehealth.org/schema/ipf-commons-core.xsd">

    <ipf:globalContext id="globalContext"/>

    <!-- Camel context and producer -->
    <camel:camelContext id="camelContext">
        <camel:jmxAgent id="agent" disabled="false" />
        <camel:routeBuilder ref="iti83RouteBuilder"/>
        <camel:routeBuilder ref="iti78RouteBuilder"/>
    </camel:camelContext>

    <!-- Route builders for the ITI-83 transaction and translation to ITI-9 -->
    <bean id="iti83RouteBuilder"
          class="org.openehealth.ipf.tutorials.fhir.Iti83RouteBuilder">
        <constructor-arg index="0" ref="uriMapper"/>
        <constructor-arg index="1" value="127.0.0.1" />
        <constructor-arg index="2" value="13710"/>

        <property name="validateIti9Request" value="false"/>
        <property name="validateIti9Response" value="false" />
    </bean>

    <!-- Route builders for the ITI-78 transaction and translation to ITI-21. -->
    <bean id="iti78RouteBuilder" class="org.openehealth.ipf.tutorials.fhir.Iti78RouteBuilder">
        <constructor-arg index="0" ref="uriMapper"/>
        <constructor-arg index="1" value="127.0.0.1" />
        <constructor-arg index="2" value="13750"/>

        <property name="validateIti21Request" value="false"/>
        <property name="validateIti21Response" value="false" />
    </bean>


    <!-- URI Mapping stuff -->
    <bean id="uriMapper" class="org.openehealth.ipf.commons.ihe.fhir.translation.DefaultUriMapper">
        <constructor-arg index="0" ref="mappingService"/>
        <constructor-arg index="1" value="uriToOid"/>
        <constructor-arg index="2" value="uriToNamespace"/>
    </bean>

    <bean id="mappingService" class="org.openehealth.ipf.commons.spring.map.SpringBidiMappingService">
        <property name="mappingResources">
            <list>
                <value>classpath:mapping.map</value>
                <value>classpath:META-INF/map/fhir-hl7v2-translation.map</value>
            </list>
        </property>
    </bean>

    <bean id="hl7decoder" class="org.apache.camel.component.hl7.HL7MLLPNettyDecoderFactory">
        <property name="charset" value="iso-8859-1"/>
    </bean>

    <bean id="hl7encoder" class="org.apache.camel.component.hl7.HL7MLLPNettyEncoderFactory">
        <property name="charset" value="iso-8859-1"/>
    </bean>

    <!-- Auditing -->
    <bean id="auditContext" class="org.openehealth.ipf.commons.audit.DefaultAuditContext">
        <property name="auditEnabled" value="true"/>
        <property name="auditMessageQueue" ref="mockedSender"/>
        <property name="auditSourceId" value="sourceId"/>
    </bean>

    <bean id="mockedSender" class="org.openehealth.ipf.commons.audit.queue.RecordingAuditMessageQueue"/>

</beans>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy