blob: e995053f12de0af635c4ebd149ddad84ab144931 [file] [log] [blame]
mayankg2703eacde7f2018-02-05 11:00:25 +00001<beans xmlns="http://www.springframework.org/schema/beans"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="
4 http://www.springframework.org/schema/beans
5 http://www.springframework.org/schema/beans/spring-beans.xsd">
6
7 <bean id="eepConfig" class="org.onap.aai.datarouter.policy.EntityEventPolicyConfig" >
8 <property name="sourceDomain" value="default" />
9 <property name="searchBaseUrl" value="https://search-data-service:9509" />
10 <property name="searchEndpoint" value="services/search-data-service/v1/search/indexes/" />
11 <property name="searchEndpointDocuments" value = "documents" />
12 <property name="searchEntitySearchIndex" value="entity-search-index" />
13 <property name="searchTopographySearchIndex" value="topography-search-index" />
14 <property name="searchEntityAutoSuggestIndex" value="entity-autosuggest-index" />
15 <property name="searchAggregationVnfIndex" value="aggregate-vnf-index" />
16 <property name="searchCertName" value="client-cert-onap.p12" />
17 <property name="searchKeystorePwd" value="OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10" />
18 <property name="searchKeystore" value="tomcat_keystore" />
19 </bean>
20
21 <bean id="entityEventPolicy" class="org.onap.aai.datarouter.policy.EntityEventPolicy" init-method="startup" >
22 <constructor-arg ref="eepConfig"/>
23 </bean>
24</beans>