Files
DSpace/dspace/config/spring/api/coar-notify.xml
2024-02-14 17:54:08 +01:00

37 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.xsd"
default-lazy-init="true">
<bean class="org.dspace.coarnotify.SubmissionCOARNotifyServiceImpl"/>
<bean class="org.dspace.coarnotify.COARNotifyConfigurationService">
<property name="patterns">
<map>
<entry key="coarnotify">
<list>
<ref bean="requestReview"/>
<ref bean="requestEndorsement"/>
<ref bean="requestIngest" />
</list>
</entry>
</map>
</property>
</bean>
<bean id="requestReview" class="org.dspace.coarnotify.COARPattern">
<property name="pattern" value="request-review"/>
<property name="multipleRequest" value="true"/>
</bean>
<bean id="requestEndorsement" class="org.dspace.coarnotify.COARPattern">
<property name="pattern" value="request-endorsement"/>
<property name="multipleRequest" value="true"/>
</bean>
<bean id="requestIngest" class="org.dspace.coarnotify.COARPattern">
<property name="pattern" value="request-ingest"/>
<property name="multipleRequest" value="false"/>
</bean>
</beans>