1
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
4
|
|
5
|
<bean id="dryad31Subprocessor"
|
6
|
class="org.dataone.cn.indexer.parser.ScienceMetadataDocumentSubprocessor">
|
7
|
<property name="matchDocument"
|
8
|
value="/d100:systemMetadata/formatId[text() = 'http://datadryad.org/profile/v3.1/dryad.xsd']"></property>
|
9
|
<property name="fieldList">
|
10
|
<list>
|
11
|
<ref bean="dryad.abstract" />
|
12
|
<ref bean="dryad.author" />
|
13
|
<ref bean="dryad.investigator" />
|
14
|
<ref bean="dryad.keywords" />
|
15
|
<ref bean="dryad.origin" />
|
16
|
<ref bean="dryad.pubDate" />
|
17
|
<ref bean="dryad.site" />
|
18
|
<ref bean="dryad.title" />
|
19
|
<ref bean="dryad.scientificName" />
|
20
|
<ref bean="dryad.fileID" />
|
21
|
<ref bean="dryad.fullText" />
|
22
|
</list>
|
23
|
</property>
|
24
|
</bean>
|
25
|
</beans>
|