summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorabatos <adrian.batos-parac@amdocs.com>2017-11-10 19:36:47 -0500
committerabatos <adrian.batos-parac@amdocs.com>2017-11-10 19:36:47 -0500
commitc3127372c59e168ab074990ddcb8940ef1f87779 (patch)
treec0648cbb8b5884a68a56ac348bdb9f59475590a4
parent91038849d92e348573286f5fe8caddd8f16af0fa (diff)
Fix improper path in beans file
The path to the entity configuration in data router was incorrect since the package path was recently changed to ONAP. Change-Id: Iea2ad1e0d44c3fced968d261ae1bf019312c378f Issue-Id: AAI-461 Signed-off-by: Adrian Batos <adrian.batos-parac@amdocs.com>
-rwxr-xr-xdata-router/dynamic/conf/entity-event-policy.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/data-router/dynamic/conf/entity-event-policy.xml b/data-router/dynamic/conf/entity-event-policy.xml
index 0234b46..37bc21a 100755
--- a/data-router/dynamic/conf/entity-event-policy.xml
+++ b/data-router/dynamic/conf/entity-event-policy.xml
@@ -4,7 +4,7 @@
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
- <bean id="eepConfig" class="org.openecomp.datarouter.policy.EntityEventPolicyConfig" >
+ <bean id="eepConfig" class="org.onap.aai.datarouter.policy.EntityEventPolicyConfig" >
<property name="sourceDomain" value="default" />
<property name="searchBaseUrl" value="https://aai.searchservice.simpledemo.openecomp.org:9509" />
<property name="searchEndpoint" value="services/search-data-service/v1/search/indexes/" />
@@ -18,7 +18,7 @@
<property name="searchKeystore" value="tomcat_keystore" />
</bean>
- <bean id="entityEventPolicy" class="org.openecomp.datarouter.policy.EntityEventPolicy" init-method="startup" >
+ <bean id="entityEventPolicy" class="org.onap.aai.datarouter.policy.EntityEventPolicy" init-method="startup" >
<constructor-arg ref="eepConfig"/>
</bean>
</beans>