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="HTTPWithFileNamePlugin" class="eu.dnetlib.data.collector.plugins.httpfilename.HTTPWithFileNameCollectorPlugin">
36
		<property name="protocolDescriptor">
37

    
38
			<bean class="eu.dnetlib.data.collector.rmi.ProtocolDescriptor" p:name="HTTPWithFileName">
39
				<property name="params">
40
				<list>
41
				<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
42
					  p:name="filter" />
43
				</list>
44
				</property>
45
			</bean>
46
		</property>
47
	</bean>
48

    
49
	<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
	</bean>
81

    
82
	<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
							p:name="resultSizeValue" />
103
                                                <bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
104
							p:name="queryParams" />					
105
						<bean class="eu.dnetlib.data.collector.rmi.ProtocolParameter"
106
							p:name="entityXpath" />
107
					</list>
108
				</property>
109
			</bean>
110
		</property>
111
	</bean>
112

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