diff options
author | victor.gao <victor.gao@huawei.com> | 2017-08-17 09:35:20 +0800 |
---|---|---|
committer | victor.gao <victor.gao@huawei.com> | 2017-08-17 09:35:20 +0800 |
commit | cb5018ceb56b983f4c0dca1f0eee9c94c1404b8f (patch) | |
tree | 960ce1afbfae249cfe1d39c386dc3041ba931a0f /ResmanagementService/service/src/main/resources/spring | |
parent | e585e291a7d1fc27541471d8bebb6fe36a72b9e7 (diff) |
Correct maven pom groupId
Correct the mismatch between gerrit project directory and wiki groupid definition.
Change-Id: I35035c67dc654e7383c5e9951f1f72986c588d57
Issue-Id:VFC-86
Signed-off-by: victor.gao <victor.gao@huawei.com>
Diffstat (limited to 'ResmanagementService/service/src/main/resources/spring')
-rw-r--r-- | ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml | 100 | ||||
-rw-r--r-- | ResmanagementService/service/src/main/resources/spring/Resmanagement/svc_register.xml | 4 |
2 files changed, 52 insertions, 52 deletions
diff --git a/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml b/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml index f08019e..7dd42a3 100644 --- a/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml +++ b/ResmanagementService/service/src/main/resources/spring/Resmanagement/services.xml @@ -66,217 +66,217 @@ <!--location --> <bean id="locationDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.LocationDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.LocationDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="locationBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.LocationBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.LocationBusinessImpl"> <property name="locationDao" ref="locationDao"></property> </bean> <bean id="location" - class="org.onap.vfc.nfvo.res.service.base.openstack.impl.LocationImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.base.openstack.impl.LocationImpl"> <property name="locationBusiness" ref="locationBusiness"></property> </bean> - <bean id="locationRoa" class="org.onap.vfc.nfvo.res.service.rest.LocationRoa"> + <bean id="locationRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.LocationRoa"> <property name="location" ref="location"></property> <property name="sites" ref="sites"></property> </bean> <!--port --> <bean id="portDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.PortDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.PortDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="portBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.PortBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.PortBusinessImpl"> <property name="portDao" ref="portDao"></property> </bean> <bean id="port" - class="org.onap.vfc.nfvo.res.service.base.openstack.impl.PortImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.base.openstack.impl.PortImpl"> <property name="portBusiness" ref="portBusiness"></property> </bean> - <bean id="portRoa" class="org.onap.vfc.nfvo.res.service.rest.PortRoa"> + <bean id="portRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.PortRoa"> <property name="port" ref="port"></property> </bean> <!--host --> <bean id="hostDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.HostDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.HostDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="hostBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.HostBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.HostBusinessImpl"> <property name="hostDao" ref="hostDao"></property> </bean> <bean id="host" - class="org.onap.vfc.nfvo.res.service.base.openstack.impl.HostImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.base.openstack.impl.HostImpl"> <property name="hostBusiness" ref="hostBusiness"></property> </bean> - <bean id="hostRoa" class="org.onap.vfc.nfvo.res.service.rest.HostRoa"> + <bean id="hostRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.HostRoa"> <property name="host" ref="host"></property> </bean> <!--network --> <bean id="networkDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.NetworkDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.NetworkDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="networkBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.NetworkBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.NetworkBusinessImpl"> <property name="networkDao" ref="networkDao"></property> </bean> <bean id="network" - class="org.onap.vfc.nfvo.res.service.base.openstack.impl.NetworkImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.base.openstack.impl.NetworkImpl"> <property name="networkBusiness" ref="networkBusiness"></property> </bean> - <bean id="networkRoa" class="org.onap.vfc.nfvo.res.service.rest.NetworkRoa"> + <bean id="networkRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.NetworkRoa"> <property name="network" ref="network"></property> </bean> <!--sites --> <bean id="sitesDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.SitesDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.SitesDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="sitesBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.SitesBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.SitesBusinessImpl"> <property name="sitesDao" ref="sitesDao"></property> </bean> <bean id="sites" - class="org.onap.vfc.nfvo.res.service.base.openstack.impl.SitesImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.base.openstack.impl.SitesImpl"> <property name="sitesBusiness" ref="sitesBusiness"></property> <property name="limitsBusiness" ref="limitsBusiness"></property> <property name="resOperateService" ref="resOperateService"></property> </bean> - <bean id="sitesRoa" class="org.onap.vfc.nfvo.res.service.rest.SitesRoa"> + <bean id="sitesRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.SitesRoa"> <property name="sites" ref="sites"></property> </bean> <!--vim --> <bean id="vimDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.VimDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VimDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="vimBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.VimBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.VimBusinessImpl"> <property name="vimDao" ref="vimDao"></property> </bean> <bean id="vim" - class="org.onap.vfc.nfvo.res.service.base.openstack.impl.VimImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.base.openstack.impl.VimImpl"> <property name="vimBusiness" ref="vimBusiness"></property> </bean> <!-- limits --> <bean id="limitsBusiness" - class="org.onap.vfc.nfvo.res.service.business.impl.LimitsBusinessImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.business.impl.LimitsBusinessImpl"> </bean> - <bean id="limitsRoa" class="org.onap.vfc.nfvo.res.service.rest.LimitsRoa"> + <bean id="limitsRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.LimitsRoa"> <property name="limitsBusiness" ref="limitsBusiness"></property> </bean> <!-- vl --> <bean id="virtualLinkDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.VirtualLinkDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VirtualLinkDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="virtualLink" - class="org.onap.vfc.nfvo.res.service.group.impl.VirtualLinkServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.VirtualLinkServiceImpl"> <property name="virtualLinkDao" ref="virtualLinkDao"></property> </bean> - <bean id="virtualLinkRoa" class="org.onap.vfc.nfvo.res.service.rest.VirtualLinkRoa"> + <bean id="virtualLinkRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.VirtualLinkRoa"> <property name="virtualLink" ref="virtualLink"></property> </bean> <!-- vnf --> <bean id="vnfDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.VnfDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VnfDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="vnfService" - class="org.onap.vfc.nfvo.res.service.group.impl.VnfServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.VnfServiceImpl"> <property name="vnfDao" ref="vnfDao"></property> <property name="vnfInfoService" ref="vnfInfoService"></property> </bean> - <bean id="vnfRoa" class="org.onap.vfc.nfvo.res.service.rest.VnfRoa"> + <bean id="vnfRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.VnfRoa"> <property name="vnfService" ref="vnfService"></property> </bean> <!-- vm --> - <bean id="vmDao" class="org.onap.vfc.nfvo.res.service.dao.impl.VmDaoImpl"> + <bean id="vmDao" class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VmDaoImpl"> <property name="session" ref="session"></property> </bean> - <bean id="vmService" class="org.onap.vfc.nfvo.res.service.group.impl.VmServiceImpl"> + <bean id="vmService" class="org.onap.vfc.nfvo.resmanagement.service.group.impl.VmServiceImpl"> <property name="vmDao" ref="vmDao"></property> </bean> - <bean id="vmRoa" class="org.onap.vfc.nfvo.res.service.rest.VmRoa"> + <bean id="vmRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.VmRoa"> <property name="vmService" ref="vmService"></property> </bean> <!-- vnfInfo --> <bean id="vnfInfoDao" - class="org.onap.vfc.nfvo.res.service.dao.impl.VnfInfoDaoImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VnfInfoDaoImpl"> <property name="session" ref="session"></property> </bean> <bean id="vnfInfoService" - class="org.onap.vfc.nfvo.res.service.group.impl.VnfInfoServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.VnfInfoServiceImpl"> <property name="vnfInfoDao" ref="vnfInfoDao"></property> <property name="vmService" ref="vmService"></property> </bean> - <bean id="vnfInfoRoa" class="org.onap.vfc.nfvo.res.service.rest.VnfInfoRoa"> + <bean id="vnfInfoRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.VnfInfoRoa"> <property name="vnfInfoService" ref="vnfInfoService"></property> </bean> <!-- vnfstatus --> - <bean id="vnfStatusDao" class="org.onap.vfc.nfvo.res.service.dao.impl.VnfStatusDaoImpl"> + <bean id="vnfStatusDao" class="org.onap.vfc.nfvo.resmanagement.service.dao.impl.VnfStatusDaoImpl"> <property name="session" ref="session"></property> </bean> - <bean id="vnfStatusService" class="org.onap.vfc.nfvo.res.service.group.impl.VnfStatusServiceImpl"> + <bean id="vnfStatusService" class="org.onap.vfc.nfvo.resmanagement.service.group.impl.VnfStatusServiceImpl"> <property name="vnfStatusDao" ref="vnfStatusDao"></property> </bean> - <bean id="vnfStatusRoa" class="org.onap.vfc.nfvo.res.service.rest.VnfStatusRoa"> + <bean id="vnfStatusRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.VnfStatusRoa"> <property name="vnfStatusService" ref="vnfStatusService"></property> </bean> <!-- grantResource --> - <bean id="grantResService" class="org.onap.vfc.nfvo.res.service.group.impl.GrantResServiceImpl"> + <bean id="grantResService" class="org.onap.vfc.nfvo.resmanagement.service.group.impl.GrantResServiceImpl"> <property name="sites" ref="sites"></property> </bean> - <bean id="grantResourseRoa" class="org.onap.vfc.nfvo.res.service.rest.GrantResourseRoa"> + <bean id="grantResourseRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.GrantResourseRoa"> <property name="grantResService" ref="grantResService"></property> </bean> <!--group_resoperate --> <bean id="resOperateService" - class="org.onap.vfc.nfvo.res.service.group.impl.ResOperateServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.ResOperateServiceImpl"> <property name="host" ref="host"></property> <property name="port" ref="port"></property> <property name="sites" ref="sites"></property> @@ -288,22 +288,22 @@ </bean> <bean id="iResourceUpdateServiceImpl" - class="org.onap.vfc.nfvo.res.service.group.impl.IResourceUpdateServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.IResourceUpdateServiceImpl"> </bean> <bean id="iResourceAddServiceImpl" - class="org.onap.vfc.nfvo.res.service.group.impl.IResourceAddServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.IResourceAddServiceImpl"> </bean> <bean id="iResourceDelServiceImpl" - class="org.onap.vfc.nfvo.res.service.group.impl.IResourceDelServiceImpl"> + class="org.onap.vfc.nfvo.resmanagement.service.group.impl.IResourceDelServiceImpl"> </bean> - <bean id="resOperateRoa" class="org.onap.vfc.nfvo.res.service.rest.ResOperateRoa"> + <bean id="resOperateRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.ResOperateRoa"> <property name="resOperateService" ref="resOperateService"></property> </bean> - <bean id="SwaggerRoa" class="org.onap.vfc.nfvo.res.service.rest.SwaggerRoa"></bean> + <bean id="SwaggerRoa" class="org.onap.vfc.nfvo.resmanagement.service.rest.SwaggerRoa"></bean> <jaxrs:server id="restContainer" address="/"> <jaxrs:serviceBeans> @@ -324,8 +324,8 @@ </jaxrs:serviceBeans> <jaxrs:providers> <ref bean="jsonProvider" /> - <bean class="org.onap.vfc.nfvo.res.service.rest.exceptionmapper.ServiceExceptionMapper" /> - <bean class="org.onap.vfc.nfvo.res.service.rest.exceptionmapper.GenericExceptionMapper" /> + <bean class="org.onap.vfc.nfvo.resmanagement.service.rest.exceptionmapper.ServiceExceptionMapper" /> + <bean class="org.onap.vfc.nfvo.resmanagement.service.rest.exceptionmapper.GenericExceptionMapper" /> </jaxrs:providers> </jaxrs:server> </beans> diff --git a/ResmanagementService/service/src/main/resources/spring/Resmanagement/svc_register.xml b/ResmanagementService/service/src/main/resources/spring/Resmanagement/svc_register.xml index 9133d04..e1d7493 100644 --- a/ResmanagementService/service/src/main/resources/spring/Resmanagement/svc_register.xml +++ b/ResmanagementService/service/src/main/resources/spring/Resmanagement/svc_register.xml @@ -37,6 +37,6 @@ http://www.springframework.org/schema/aop http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> - <bean class="org.onap.vfc.nfvo.res.service.activator.ROAResmgrServicePostProcessor"></bean> - <bean class="org.onap.vfc.nfvo.res.service.adapter.impl.ResmgrAdapterMgrService"></bean> + <bean class="org.onap.vfc.nfvo.resmanagement.service.activator.ROAResmgrServicePostProcessor"></bean> + <bean class="org.onap.vfc.nfvo.resmanagement.service.adapter.impl.ResmgrAdapterMgrService"></bean> </beans>
\ No newline at end of file |