Project

General

Profile

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