mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-10 11:33:11 +00:00
49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context-2.5.xsd"
|
|
default-autowire-candidates="*Service,*DAO,javax.sql.DataSource">
|
|
|
|
<context:annotation-config /> <!-- allows us to use spring annotations in beans -->
|
|
|
|
<bean class="org.dspace.app.sherpa.submit.SHERPASubmitConfigurationService"
|
|
id="org.dspace.app.sherpa.submit.SHERPASubmitConfigurationService">
|
|
<property name="issnItemExtractors">
|
|
<list>
|
|
<bean class="org.dspace.app.sherpa.submit.MetadataValueISSNExtractor">
|
|
<property name="metadataList">
|
|
<list>
|
|
<value>dc.identifier.issn</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
<!-- Uncomment this bean if you have SHERPARoMEOJournalTitle enabled
|
|
<bean class="org.dspace.app.sherpa.submit.MetadataAuthorityISSNExtractor">
|
|
<property name="metadataList">
|
|
<list>
|
|
<value>dc.title.alternative</value>
|
|
</list>
|
|
</property>
|
|
</bean> -->
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean class="org.dspace.app.sherpa.SHERPAService" id="org.dspace.app.sherpa.SHERPAService">
|
|
<property name="maxNumberOfTries" value="3"/>
|
|
<!-- the value of this property is in milliseconds -->
|
|
<property name="sleepBetweenTimeouts" value="2000"/>
|
|
<!-- the value of this property is in milliseconds -->
|
|
<property name="timeout" value="5000"/>
|
|
</bean>
|
|
|
|
<bean class="org.dspace.app.sherpa.cache.SherpaCacheEvictService">
|
|
<property name="sherpaSubmitService"
|
|
ref="org.dspace.app.sherpa.submit.SHERPASubmitService"/>
|
|
</bean>
|
|
</beans>
|