blob: 6ad3f8d51bca6c93232e133d9cfffca69d968705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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="personalizationConfig"
class="org.onap.aai.sparky.personalization.config.PersonalizationConfig">
<property name="topLeftHeader" value="${personalization.topLeftHeader:A&AI}" />
<property name="htmlDocumentTitle" value="${personalization.htmlDocumentTitle:A&AI}" />
</bean>
<bean id="personalizationServiceProcessor"
class="org.onap.aai.sparky.personalization.PersonalizationServiceProvider">
<constructor-arg ref="personalizationConfig" />
</bean>
</beans>
|