1
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2
|
xmlns:p="http://www.springframework.org/schema/p"
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
5
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
6
|
http://www.springframework.org/schema/context
|
7
|
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
|
8
|
|
9
|
<bean id="eml210Subprocessor"
|
10
|
class="org.dataone.cn.indexer.parser.ScienceMetadataDocumentSubprocessor">
|
11
|
<property name="matchDocuments">
|
12
|
<list>
|
13
|
<value>eml://ecoinformatics.org/eml-2.1.0</value>
|
14
|
</list>
|
15
|
</property>
|
16
|
<property name="fieldList">
|
17
|
<list>
|
18
|
<ref bean="eml.abstract" />
|
19
|
<ref bean="eml.keywords" />
|
20
|
<ref bean="eml.title" />
|
21
|
<ref bean="eml.project" />
|
22
|
<ref bean="eml.southBoundCoord" />
|
23
|
<ref bean="eml.northBoundCoord" />
|
24
|
<ref bean="eml.westBoundCoord" />
|
25
|
<ref bean="eml.eastBoundCoord" />
|
26
|
<ref bean="eml.site" />
|
27
|
<ref bean="eml.beginDate" />
|
28
|
<ref bean="eml.endDate" />
|
29
|
<ref bean="eml.pubDate" />
|
30
|
<ref bean="eml.author" />
|
31
|
<ref bean="eml.authorGivenName"/>
|
32
|
<ref bean="eml.authorSurName" />
|
33
|
<ref bean="eml.authorGivenNameSort"/>
|
34
|
<ref bean="eml.authorSurNameSort" />
|
35
|
<ref bean="eml.author_lname" />
|
36
|
<ref bean="eml.investigator" />
|
37
|
<ref bean="eml.origin" />
|
38
|
<ref bean="eml.contactOrganization" />
|
39
|
<ref bean="eml.genus" />
|
40
|
<ref bean="eml.species" />
|
41
|
<ref bean="eml.kingdom" />
|
42
|
<ref bean="eml.order" />
|
43
|
<ref bean="eml.phylum" />
|
44
|
<ref bean="eml.family" />
|
45
|
<ref bean="eml.class" />
|
46
|
<ref bean="eml.scientificName" />
|
47
|
<ref bean="eml.attributeName" />
|
48
|
<ref bean="eml.attributeLabel" />
|
49
|
<ref bean="eml.attributeDescription" />
|
50
|
<ref bean="eml.attributeUnit" />
|
51
|
<ref bean="eml.attributeText" />
|
52
|
<!-- <ref bean="eml.fileID" /> -->
|
53
|
<ref bean="eml.fullText" />
|
54
|
<ref bean="eml.geohash1" />
|
55
|
<ref bean="eml.geohash2" />
|
56
|
<ref bean="eml.geohash3" />
|
57
|
<ref bean="eml.geohash4" />
|
58
|
<ref bean="eml.geohash5" />
|
59
|
<ref bean="eml.geohash6" />
|
60
|
<ref bean="eml.geohash7" />
|
61
|
<ref bean="eml.geohash8" />
|
62
|
<ref bean="eml.geohash9" />
|
63
|
</list>
|
64
|
</property>
|
65
|
</bean>
|
66
|
</beans>
|