summaryrefslogtreecommitdiffstats
path: root/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml')
-rw-r--r--ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml9
1 files changed, 7 insertions, 2 deletions
diff --git a/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml b/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml
index aaac15e..de9a982 100644
--- a/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml
+++ b/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml
@@ -224,13 +224,18 @@
<!-- vnf -->
<bean id="vnfDao"
- class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VnfDaoImpl">
+ class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VnfDaoImpl">
<property name="session" ref="session"></property>
</bean>
+
+ <!-- vnfAai -->
+ <bean id="vnfAaiDao"
+ class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.aai.VnfAaiDaoImpl">
+ </bean>
<bean id="vnfService"
class="org.onap.vfc.nfvo.resmanagement.service.group.impl.VnfServiceImpl">
- <property name="vnfDao" ref="vnfDao"></property>
+ <property name="vnfDao" ref="vnfAaiDao"></property>
<property name="vnfInfoService" ref="vnfInfoService"></property>
</bean>