Red Hat Training

A Red Hat training course is available for Red Hat Fuse

102.3. Configuration Overview

Overview

The SAP component maintains three maps to store destination data, server data and repository data. The component’s property, destinationDataStore, stores destination data keyed by destination name, the property, serverDataStore, stores server data keyed by server name and the property, repositoryDataStore, stores repository data keyed by repository name. These configurations must be passed to the component during its initialization.

Example

<bean id="sap" class="org.fusesource.camel.component.sap.SAPComponent">
    <property name="destinationDataStore">
        <map>
            <entry key="nplDest" value-ref="nplDestinationData" />
        </map>
    </property>
    <property name="serverDataStore">
        <map>
            <entry key="nplServer" value-ref="nplServerData" />
        </map>
    </property>
    <property name="repositoryDataStore">
        <map>
            <entry key="nplServer" value-ref="nplRepositoryData"/>
        </map>
    </property>
</bean>