Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
4
	xmlns:cxf="http://cxf.apache.org/core" xmlns:jaxws="http://cxf.apache.org/jaxws"
5
	xmlns:p="http://http://www.springframework.org/schema/p"
6
	xmlns:template="http://dnetlib.eu/springbeans/template" xmlns:t="http://dnetlib.eu/springbeans/t"
7
	xmlns:tx="http://www.springframework.org/schema/tx"
8

    
9
	xsi:schemaLocation="
10
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
11
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
12
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
13
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
14
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
15
        http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
16
	default-autowire="no">
17

    
18
	<bean id="blackboardHandler"
19
		class="eu.dnetlib.enabling.tools.blackboard.BlackboardHandlerImpl">
20
		<property name="serviceLocator" ref="cnr.uniqueServiceLocator" />
21
		<property name="messageFactory">
22
			<bean class="eu.dnetlib.miscutils.jaxb.JaxbFactory">
23
				<constructor-arg
24
					value="eu.dnetlib.enabling.tools.blackboard.BlackboardMessageImpl" />
25
			</bean>
26
		</property>
27
	</bean>
28

    
29
	<bean id="notificationListener" class="eu.dnetlib.validator.service.impl.NotificationListener"
30
		scope="singleton">
31
		<property name="valManager" ref="validatorManager" />
32
		<property name="blackboardHandler" ref="blackboardHandler" />
33
	</bean>
34

    
35
</beans>
(2-2/7)