Add new appconfig for spring-boot sparky
[aai/test-config.git] / sparky / appconfig / spring-beans / sparky-core-viewInspectSearchProvider.xml
diff --git a/sparky/appconfig/spring-beans/sparky-core-viewInspectSearchProvider.xml b/sparky/appconfig/spring-beans/sparky-core-viewInspectSearchProvider.xml
new file mode 100644 (file)
index 0000000..072c935
--- /dev/null
@@ -0,0 +1,34 @@
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="
+              http://www.springframework.org/schema/beans
+              http://www.springframework.org/schema/beans/spring-beans.xsd">
+
+                                <bean id="viewInspectSearchProvider"
+                               class="org.onap.aai.sparky.viewandinspect.search.ViewInspectSearchProvider">
+                               <constructor-arg ref="searchServiceAdapter" />
+                               <constructor-arg ref="suggestiveSearchConfigs" />
+                               <constructor-arg name="viewInspectIndexName" value="entitysearchindex" />
+                               <constructor-arg name="viewInspectSuggestionRoute" value="schema" />
+                               <constructor-arg ref="oxmEntityLookup" />
+
+                               <property name="additionalSearchSuggestionText">
+                                       <value>Schema</value>
+                               </property>
+
+                       </bean>
+
+                       <bean id="registerViewInspectSearchProvider"
+                               class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
+                               <property name="targetObject" ref="searchProviderRegistry" />
+                               <property name="targetMethod">
+                                       <value>addSearchProviders</value>
+                               </property>
+                               <property name="arguments">
+                                       <list value-type="org.onap.aai.sparky.search.api.SearchProvider">
+                                               <ref bean="viewInspectSearchProvider" />
+                                       </list>
+                               </property>
+                       </bean>
+
+</beans>