diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2017-09-26 16:12:04 +0530 |
---|---|---|
committer | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2017-09-26 18:09:35 +0530 |
commit | 2a45991d2f400a21ce853db6a29dd587abf82cb2 (patch) | |
tree | b6e74aae525e87ca8554cef141578d1b2e926d47 /ResmanagementService/service/src/main/resources | |
parent | c5041675a30f1102daec55d08564b544b9a2071d (diff) |
Implement adapter to store vnf in AAI
Implement adapter to store vnf information in AAI.
Issue-ID: VFC-462
Change-Id: Id4c876479aab0e0e710b4e0c935326d4902e6a32
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'ResmanagementService/service/src/main/resources')
-rw-r--r-- | ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml | 9 |
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> |