<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

	<bean id="datacite3Subprocessor"
	  	class="org.dataone.cn.indexer.parser.ScienceMetadataDocumentSubprocessor">
	  	<property name="xmlNamespaceConfig" ref="xmlNamespaceConfig" />
		<property name="matchDocuments">
			<list>
				<value>http://datacite.org/schema/kernel-3.1</value>
				<value>http://datacite.org/schema/kernel-3.0</value>
			</list>
		</property>
	  	<property name="fieldList">
		   	<list>
		    	<ref bean="datacite.author" />
				<ref bean="datacite.author_lname" />
		    	<ref bean="datacite.authorSurName" />
				<ref bean="datacite.authorSurNameSort" />
				<ref bean="datacite.authorGivenName" />
				<ref bean="datacite.authorGivenNameSort" />
		    	<ref bean="datacite.abstract" />
				
		    	<ref bean="datacite.title" />
		    	<ref bean="datacite.pubDate" />
		    	<ref bean="datacite.keywords" />
		    	
		    	<ref bean="datacite.beginDate" />
		    	<ref bean="datacite.endDate" />
		    	
		    	<ref bean="datacite.origin" />
		    	<ref bean="datacite.investigator" />
		    	<ref bean="datacite.contactOrganization"/>

		    	<ref bean="datacite.site" />
		    	<ref bean="datacite.boxSpatialBoundCoordinates" />
		    	<ref bean="datacite.boxSpatialGeohash" />
		    	<ref bean="datacite.fileID" />
		    	<ref bean="datacite.fullText" />
		    </list>
		</property>
	</bean>
</beans>