Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<beans xmlns="http://www.springframework.org/schema/beans"
4
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
5
	xmlns:context="http://www.springframework.org/schema/context"
6
	xmlns:cxf="http://cxf.apache.org/core" 
7
	xmlns:jaxws="http://cxf.apache.org/jaxws"
8
	xmlns:p="http://http://www.springframework.org/schema/p"
9
	
10
	xsi:schemaLocation="
11
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
12
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
13
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
14
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"
15
	default-autowire="byName">
16
	
17
	<bean id="cnr.lookUpLocator" class="eu.dnetlib.enabling.tools.StaticServiceLocator">
18
	</bean>
19

    
20
	<alias name="cnr.lookUpLocator" alias="lookupLocator" />
21
	
22
	<bean id="validatorServiceLocator"
23
		factory-bean="serviceLocatorFactory"
24
		factory-method="newServiceLocator">
25
		<constructor-arg value="eu.dnetlib.api.functionality.ValidatorService" />
26
		<constructor-arg value="${ValidatorService.url}" />
27
	</bean>
28
	
29
</beans>
(3-3/5)