blob: 5c6839b455b4f686e2ab9a0339b63bfc837c17df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<beans profile="oxm-override" xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="oxmModelLoader" class="org.onap.aai.sparky.config.oxm.OxmModelLoader"
init-method="loadModel">
<constructor-arg name="apiVersionOverride" value="${oxm.apiVersionOverride}" />
<constructor-arg ref="oxmModelProcessorSet" />
<constructor-arg ref="nodeIngestor" />
</bean>
</beans>
|