mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-10 03:23:13 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 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"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
|
|
|
|
|
|
<!-- Versioning Service Application Interface for DSpace Will be autowired with
|
|
a Versioning Provider present in Spring context.
|
|
Default Item Versioning Provider, defines behavior for replicating
|
|
Item, Metadata, Bundles and Bitstreams. Autowired at this time.
|
|
-->
|
|
<bean id="org.dspace.versioning.service.VersioningService"
|
|
class="org.dspace.versioning.VersioningServiceImpl"
|
|
autowire="byType"
|
|
scope="singleton">
|
|
<property name="provider">
|
|
<!-- Default Item Versioning Provider, defines behavior for replicating
|
|
Item, Metadata, Budles and Bitstreams. Autowired at this time. -->
|
|
<bean class="org.dspace.versioning.DefaultItemVersionProvider">
|
|
<property name="ignoredMetadataFields">
|
|
<set>
|
|
<value>dc.date.accessioned</value>
|
|
<value>dc.description.provenance</value>
|
|
</set>
|
|
</property>
|
|
|
|
</bean>
|
|
</property>
|
|
|
|
</bean>
|
|
|
|
<bean class="org.dspace.versioning.utils.RelationshipVersioningUtils"/>
|
|
|
|
</beans>
|