Set thrift port and network_mode
[aai/test-config.git] / sparky / dynamic / conf / sparky-core-apigw.xml
1 <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="synapseRestEndpointConfig" class="org.onap.aai.sparky.dal.rest.config.RestEndpointConfig">
8                 <property name="endpointIpAddress" value="aai.synapse.simpledemo.openecomp.org" />
9                 <property name="endpointServerPort" value="9502" />
10                 <property name="numRequestRetries" value="5" />
11                 <property name="restAuthenticationMode" value="SSL_CERT" />
12                 <property name="connectTimeoutInMs" value="60000" />
13                 <property name="readTimeoutInMs" value="30000" />
14                 <property name="certFileName" value="client-cert-onap.p12" />
15                 <property name="certPassword" value="OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10" />
16                 <property name="truststoreFileName" value="tomcat_keystore" />
17                 <property name="validateServerCertChain" value="false" />
18                 <property name="validateServerHostname" value="false" />
19         </bean>
20
21         <bean id="aaiuiProxyProcessor"
22                 class="org.onap.aai.sparky.dal.proxy.processor.AaiUiProxyProcessor">
23                 <constructor-arg ref="synapseRestEndpointConfig" />
24                 <constructor-arg name="apiGatewayEndpoint" value="ui-request" />
25         </bean>
26
27 </beans>
28
29