update sparky with configurable features
[aai/sparky-be.git] / sparkybe-onap-application / config / spring-beans / sparky-personalization-service.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
8         <bean id="personalizationConfig"
9                 class="org.onap.aai.sparky.personalization.config.PersonalizationConfig">
10                 <property name="topLeftHeader" value="${personalization.topLeftHeader:A&amp;AI}" />
11                 <property name="htmlDocumentTitle" value="${personalization.htmlDocumentTitle:A&amp;AI}" />
12         </bean>
13
14         <bean id="personalizationServiceProcessor"
15                 class="org.onap.aai.sparky.personalization.PersonalizationServiceProvider">
16                 <constructor-arg ref="personalizationConfig" />
17         </bean>
18
19 </beans>