1 |
9526
|
tao
|
<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="isotc211Subprocessor"
|
6 |
|
|
class="org.dataone.cn.indexer.parser.ScienceMetadataDocumentSubprocessor">
|
7 |
|
|
<property name="xmlNamespaceConfig" ref="xmlNamespaceConfig" />
|
8 |
|
|
<property name="matchDocuments">
|
9 |
|
|
<list>
|
10 |
|
|
<value>http://www.isotc211.org/2005/gmd</value>
|
11 |
|
|
</list>
|
12 |
|
|
</property>
|
13 |
|
|
<property name="fieldList">
|
14 |
|
|
<list>
|
15 |
|
|
<ref bean="isotc.abstract" />
|
16 |
|
|
<ref bean="isotc.author" />
|
17 |
|
|
<ref bean="isotc.authorSurName" />
|
18 |
|
|
<ref bean="isotc.authorSurNameSort" />
|
19 |
|
|
<ref bean="isotc.contactOrganization" />
|
20 |
|
|
<ref bean="isotc.origin" />
|
21 |
|
|
<ref bean="isotc.investigator" />
|
22 |
|
|
<ref bean="isotc.pubDate" />
|
23 |
|
|
<ref bean="isotc.beginDate" />
|
24 |
|
|
<ref bean="isotc.endDate" />
|
25 |
|
|
<ref bean="isotc.title" />
|
26 |
|
|
<ref bean="isotc.keywords" />
|
27 |
|
|
<ref bean="isotc.eastBoundCoord" />
|
28 |
|
|
<ref bean="isotc.westBoundCoord" />
|
29 |
|
|
<ref bean="isotc.southBoundCoord" />
|
30 |
|
|
<ref bean="isotc.northBoundCoord" />
|
31 |
|
|
<ref bean="isotc.geohash9" />
|
32 |
|
|
<ref bean="isotc.geohash1" />
|
33 |
|
|
<ref bean="isotc.geohash2" />
|
34 |
|
|
<ref bean="isotc.geohash3" />
|
35 |
|
|
<ref bean="isotc.geohash4" />
|
36 |
|
|
<ref bean="isotc.geohash5" />
|
37 |
|
|
<ref bean="isotc.geohash6" />
|
38 |
|
|
<ref bean="isotc.geohash7" />
|
39 |
|
|
<ref bean="isotc.geohash8" />
|
40 |
|
|
|
41 |
|
|
<ref bean="isotc.isService"/>
|
42 |
|
|
<ref bean="isotc.serviceCoupling" />
|
43 |
|
|
<ref bean="isotc.serviceTitle" />
|
44 |
|
|
<ref bean="isotc.serviceDescription" />
|
45 |
|
|
<ref bean="isotc.serviceType" />
|
46 |
|
|
<ref bean="isotc.serviceEndpoint" />
|
47 |
|
|
<ref bean="isotc.serviceInput" />
|
48 |
|
|
<ref bean="isotc.serviceOutput" />
|
49 |
|
|
|
50 |
|
|
<ref bean="isotc.distribServiceType" />
|
51 |
|
|
<ref bean="isotc.distribServiceEndpoint" />
|
52 |
|
|
<ref bean="isotc.distribServiceInput" />
|
53 |
|
|
<ref bean="isotc.distribServiceOutput" />
|
54 |
|
|
|
55 |
|
|
<ref bean="isotc.fileID" />
|
56 |
|
|
<ref bean="isotc.fullText" />
|
57 |
|
|
</list>
|
58 |
|
|
</property>
|
59 |
|
|
</bean>
|
60 |
|
|
</beans>
|