diff options
author | abatos <adrian.batos-parac@amdocs.com> | 2017-11-10 19:36:47 -0500 |
---|---|---|
committer | abatos <adrian.batos-parac@amdocs.com> | 2017-11-10 19:36:47 -0500 |
commit | c3127372c59e168ab074990ddcb8940ef1f87779 (patch) | |
tree | c0648cbb8b5884a68a56ac348bdb9f59475590a4 /data-router/dynamic/conf/entity-event-policy.xml | |
parent | 91038849d92e348573286f5fe8caddd8f16af0fa (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>
Diffstat (limited to 'data-router/dynamic/conf/entity-event-policy.xml')
-rwxr-xr-x | data-router/dynamic/conf/entity-event-policy.xml | 4 |
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> |