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="matchDocument"
|
12
|
value="/d100:systemMetadata/formatId[text() = 'eml://ecoinformatics.org/eml-2.1.0']"></property>
|
13
|
<property name="fieldList">
|
14
|
<list>
|
15
|
<ref bean="eml.abstract" />
|
16
|
<ref bean="eml.keywords" />
|
17
|
<ref bean="eml.title" />
|
18
|
<ref bean="eml.project" />
|
19
|
<ref bean="eml.southBoundCoord" />
|
20
|
<ref bean="eml.northBoundCoord" />
|
21
|
<ref bean="eml.westBoundCoord" />
|
22
|
<ref bean="eml.eastBoundCoord" />
|
23
|
<ref bean="eml.beginDate" />
|
24
|
<ref bean="eml.endDate" />
|
25
|
<ref bean="eml.pubDate" />
|
26
|
<ref bean="eml.author" />
|
27
|
<ref bean="eml.author_lname" />
|
28
|
<ref bean="eml.investigator" />
|
29
|
<ref bean="eml.origin" />
|
30
|
<ref bean="eml.contactOrganization" />
|
31
|
<ref bean="eml.fileID" />
|
32
|
<ref bean="eml.fullText" />
|
33
|
</list>
|
34
|
</property>
|
35
|
</bean>
|
36
|
</beans>
|