Set thrift port and network_mode
[aai/test-config.git] / sparky / dynamic / conf / sparky-core-viewInspect.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="visualizationConfigurations"
8                 class="org.onap.aai.sparky.viewandinspect.config.VisualizationConfigs">
9                 <property name="maxSelfLinkTraversalDepth" value="2" />
10                 <property name="visualizationDebugEnabled" value="false" />
11                 <property name="aaiEntityNodeDescriptors" value="/etc/aaiEntityNodeDescriptors.json" />
12                 <property name="generalNodeClassName" value="generalNodeClass" />
13                 <property name="searchNodeClassName" value="searchedNodeClass" />
14                 <property name="selectedSearchedNodeClassName" value="selectedSearchedNodeClass" />
15                 <property name="numOfThreadsToFetchNodeIntegrity" value="20" />
16                 <property name="makeAllNeighborsBidirectional" value="false" />
17                 <property name="gizmoEnabled" value="false" />
18
19
20                 <property name="shallowEntities">
21                         <list value-type="java.lang.String">
22                                 <value>cloud-region</value>
23                                 <value>complex</value>
24                                 <value>vnf-image</value>
25                                 <value>image</value>
26                                 <value>flavor</value>
27                                 <value>availability-zone</value>
28                                 <value>tenant</value>
29                                 <value>network-profile</value>
30                                 <value>l-interface</value>
31                         </list>
32                 </property>
33
34         </bean>
35
36         <bean id="baseVisualizationService"
37                 class="org.onap.aai.sparky.viewandinspect.services.BaseVisualizationService">
38                 <constructor-arg ref="oxmModelLoader"/>
39                 <constructor-arg ref="visualizationConfigurations"/>
40                 <constructor-arg ref="activeInventoryAdapter" />
41                 <constructor-arg ref="gizmoAdapter" />
42                 <constructor-arg ref="elasticSearchAdapter" />
43                 <constructor-arg ref="elasticSearchEndpointConfig" />
44                 <constructor-arg ref="viewInspectySchemaConfig" />
45                 <constructor-arg name="numActiveInventoryWorkers" value="5" />
46                 <constructor-arg ref="oxmEntityLookup" />
47         <constructor-arg ref="subscriptionConfig" />
48         </bean>
49
50         <bean id="schemaVisualizationProcessor"
51                 class="org.onap.aai.sparky.viewandinspect.SchemaVisualizationProcessor">
52                 <property name="visualizationService" ref="baseVisualizationService" />
53         </bean>
54
55 </beans>