Project

General

Profile

1 33202 michele.ar
<?xml version="1.0" encoding="UTF-8"?>
2 40745 andrea.man
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
	   xmlns:p="http://www.springframework.org/schema/p"
4
	   xmlns:http="http://cxf.apache.org/transports/http/configuration"
5
	   xmlns="http://www.springframework.org/schema/beans"
6
	   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
7 33202 michele.ar
8 40745 andrea.man
9
                                    http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd">
10
11 49643 alessia.ba
	<bean id="httpConnector" class="eu.dnetlib.data.collector.plugins.HttpConnector"
12
	      init-method="initTrustManager"
13
	      p:defaultDelay="${collector.oai.http.defaultDelay}"
14
	      p:readTimeOut="${collector.oai.http.readTimeOut}"
15
	      p:maxNumberOfRetry="${collector.oai.http.maxNumberOfRetry}" />
16 33202 michele.ar
17
	<bean id="oaiIteratorFactory" class="eu.dnetlib.data.collector.plugins.oai.OaiIteratorFactory"
18 49643 alessia.ba
		p:httpConnector-ref="httpConnector" />
19 33202 michele.ar
20
	<bean id="oaiSetsIteratorFactory" class="eu.dnetlib.data.collector.plugins.oaisets.OaiSetsIteratorFactory"
21 49643 alessia.ba
		p:httpConnector-ref="httpConnector" />
22 40745 andrea.man
23
	<bean id="ftpIteratorFactory" class="eu.dnetlib.data.collector.plugins.ftp.FtpIteratorFactory"/>
24
25
	<bean id="sftpIteratorFactory" class="eu.dnetlib.data.collector.plugins.sftp.SftpIteratorFactory"/>
26 33202 michele.ar
27
	<!-- Functions -->
28
	<bean id="listOaiSetsFunction" class="eu.dnetlib.data.collector.functions.ListOaiSetsFunction"
29 33215 michele.ar
		p:oaiSetsIteratorFactory-ref="oaiSetsIteratorFactory" />
30 33202 michele.ar
31
</beans>