Project

General

Profile

1 31919 sandro.lab
<?xml version="1.0" encoding="UTF-8"?>
2 42296 alessia.ba
<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 31919 sandro.lab
7
8 42296 alessia.ba
       http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd">
9 31919 sandro.lab
10 42296 alessia.ba
11 33202 michele.ar
	<bean id="datasetsbyproject" class="eu.dnetlib.data.collector.plugins.datasets.DatasetsByProjectPlugin">
12
		<property name="protocolDescriptor">
13 42296 alessia.ba
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="datasetsbyproject"/>
14 33202 michele.ar
		</property>
15
	</bean>
16 42296 alessia.ba
17 38977 alessia.ba
	<bean id="re3dataPlugin" class="eu.dnetlib.data.collector.plugins.datasources.Re3DataCollectorPlugin">
18
		<property name="protocolDescriptor">
19 42296 alessia.ba
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="re3data"/>
20 38977 alessia.ba
		</property>
21
	</bean>
22 42296 alessia.ba
23 44089 alessia.ba
	<bean id="gristPlugin" class="eu.dnetlib.data.collector.plugins.projects.grist.GristCollectorPlugin">
24 42296 alessia.ba
		<property name="protocolDescriptor">
25 44089 alessia.ba
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="gristProjects"/>
26 42296 alessia.ba
		</property>
27
	</bean>
28 44802 alessia.ba
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 52518 miriam.bag
	<bean id="HTTPWithFileNamePlugin" class="eu.dnetlib.data.collector.plugins.httpfilename.HTTPWithFileNameCollectorPlugin">
36 51965 miriam.bag
		<property name="protocolDescriptor">
37
38
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="HTTPWithFileName">
39 52054 miriam.bag
				<property name="params">
40
				<list>
41
				<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
42
					  p:name="filter" />
43
				</list>
44
				</property>
45 51965 miriam.bag
			</bean>
46
		</property>
47
	</bean>
48
49 48028 claudio.at
	<bean id="excelPlugin" class="eu.dnetlib.data.collector.plugins.excel.ReadExcelPlugin">
50
		<property name="protocolDescriptor">
51
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="excelFile">
52
				<property name="params">
53
					<list>
54
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
55
						      p:name="argument" />
56
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
57
						      p:name="header_row" />
58
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
59
						      p:name="file_to_save" />
60
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
61
						      p:name="remove_empty_lines" />
62
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
63
						      p:name="remove_lines_with_id" />
64
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
65
						      p:name="col_id" />
66
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
67
						      p:name="remove_tmp_file" />
68
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
69
						      p:name="sheet_number" />
70
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
71
						      p:name="tmp_file" />
72
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
73
						      p:name="separator" />
74
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
75
						      p:name="quote" />
76
					</list>
77
				</property>
78
			</bean>
79
		</property>
80 50070 jochen.sch
	</bean>
81 48028 claudio.at
82 50070 jochen.sch
	<bean id="restCollectorPlugin" class="eu.dnetlib.data.collector.plugins.rest.RestCollectorPlugin">
83
		<property name="protocolDescriptor">
84
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="rest_json2xml">
85
				<property name="params">
86
					<list>
87
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
88
							p:name="resumptionType" />
89
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
90
							p:name="resumptionParam" />
91
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
92
							p:name="resumptionXpath" />
93
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
94
							p:name="resultTotalXpath" />
95
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
96
							p:name="resultFormatParam" />
97
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
98
							p:name="resultFormatValue" />
99
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
100
							p:name="resultSizeParam" />
101
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
102 52970 andreas.cz
							p:name="resultSizeValue" />
103
                                                <bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
104 50070 jochen.sch
							p:name="queryParams" />
105 50582 jochen.sch
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
106
							p:name="entityXpath" />
107 50070 jochen.sch
					</list>
108
				</property>
109
			</bean>
110
		</property>
111 48028 claudio.at
	</bean>
112
113 31919 sandro.lab
</beans>