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="eml200Subprocessor"
6
  class="org.dataone.cn.indexer.parser.ScienceMetadataDocumentSubprocessor">
7
  	<property name="matchDocuments">
8
		<list>
9
			<value>eml://ecoinformatics.org/eml-2.0.0</value>
10
		</list>
11
	</property>
12
  <property name="fieldList">
13
   <list>
14
    <ref bean="eml.abstract" />
15
    <ref bean="eml.keywords" />
16
    <ref bean="eml.title" />
17
    <ref bean="eml.project" />
18
    <ref bean="eml.southBoundCoord" />
19
    <ref bean="eml.northBoundCoord" />
20
    <ref bean="eml.westBoundCoord" />
21
    <ref bean="eml.eastBoundCoord" />
22
    <ref bean="eml.site" />
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.authorGivenName"/>
29
    <ref bean="eml.authorSurName" />
30
    <ref bean="eml.authorGivenNameSort"/>
31
    <ref bean="eml.authorSurNameSort" />
32
    <ref bean="eml.investigator" />
33
    <ref bean="eml.origin" />
34
    <ref bean="eml.contactOrganization" />
35
    <ref bean="eml.genus" />
36
    <ref bean="eml.species" />
37
    <ref bean="eml.kingdom" />
38
    <ref bean="eml.order" />
39
    <ref bean="eml.phylum" />
40
    <ref bean="eml.family" />
41
    <ref bean="eml.class" /> 
42
    <ref bean="eml.scientificName" />
43
    <ref bean="eml.attributeName" />
44
    <ref bean="eml.attributeLabel" />
45
    <ref bean="eml.attributeDescription" />
46
    <ref bean="eml.attributeUnit" />
47
    <ref bean="eml.attributeText" />
48
    <!--  <ref bean="eml.fileID" />  -->
49
    <ref bean="eml.fullText" />
50
    <ref bean="eml.geohash1" />
51
    <ref bean="eml.geohash2" />
52
    <ref bean="eml.geohash3" />
53
    <ref bean="eml.geohash4" />
54
    <ref bean="eml.geohash5" />
55
    <ref bean="eml.geohash6" />
56
    <ref bean="eml.geohash7" />
57
    <ref bean="eml.geohash8" />
58
    <ref bean="eml.geohash9" />    
59
   </list>
60
  </property>
61
 </bean>
62
</beans>
(4-4/19)