blob: 93a2ff7f8e94e664e1bcac6d48dacf61a7aff5cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context"
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
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="schemaLocationsBean" class="org.onap.aai.setup.SchemaLocationsBean" />
<bean id="schemaVersionsBean" class="org.onap.aai.setup.SchemaVersions" />
<bean id="configTranslator" class="org.onap.aai.setup.AAIConfigTranslator" />
<bean id="nodeIngestor" class="org.onap.aai.nodes.NodeIngestor" />
<bean id="schemaVersionBean" class="org.onap.aai.setup.SchemaVersion">
<constructor-arg value="${schema.version.api.default}" />
</bean>
<bean id="oxmReader" class="org.onap.aai.validation.reader.OxmReader" init-method="init">
<constructor-arg ref="nodeIngestor" />
<constructor-arg ref="schemaVersionBean" />
</bean>
</beans>
|