Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<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" xmlns="http://www.springframework.org/schema/beans"
5
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
6

    
7

    
8
       http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd">
9

    
10

    
11
	<bean id="datasetsbyproject" class="eu.dnetlib.data.collector.plugins.datasets.DatasetsByProjectPlugin">
12
		<property name="protocolDescriptor">
13
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="datasetsbyproject"/>
14
		</property>
15
	</bean>
16

    
17
	<bean id="re3dataPlugin" class="eu.dnetlib.data.collector.plugins.datasources.Re3DataCollectorPlugin">
18
		<property name="protocolDescriptor">
19
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="re3data"/>
20
		</property>
21
	</bean>
22

    
23
	<bean id="gristPlugin" class="eu.dnetlib.data.collector.plugins.projects.grist.GristCollectorPlugin">
24
		<property name="protocolDescriptor">
25
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="gristProjects"/>
26
		</property>
27
	</bean>
28

    
29
	<bean id="gtr2Plugin" class="eu.dnetlib.data.collector.plugins.projects.gtr2.Gtr2CollectorPlugin">
30
		<property name="protocolDescriptor">
31
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="gtr2Projects"/>
32
		</property>
33
	</bean>
34

    
35
	<bean id="excelPlugin" class="eu.dnetlib.data.collector.plugins.excel.ReadExcelPlugin">
36
		<property name="protocolDescriptor">
37
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="excelFile">
38
				<property name="params">
39
					<list>
40
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
41
						      p:name="argument" />
42
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
43
						      p:name="header_row" />
44
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
45
						      p:name="file_to_save" />
46
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
47
						      p:name="remove_empty_lines" />
48
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
49
						      p:name="remove_lines_with_id" />
50
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
51
						      p:name="col_id" />
52
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
53
						      p:name="remove_tmp_file" />
54
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
55
						      p:name="sheet_number" />
56
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
57
						      p:name="tmp_file" />
58
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
59
						      p:name="separator" />
60
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
61
						      p:name="quote" />
62
					</list>
63
				</property>
64
			</bean>
65
		</property>
66

    
67

    
68
	</bean>
69

    
70

    
71
</beans>
    (1-1/1)