<?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"
    xmlns:util="http://www.springframework.org/schema/util"
    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
           http://www.springframework.org/schema/util
           http://www.springframework.org/schema/util/spring-util.xsd">

    <context:annotation-config /> <!-- allows us to use spring annotations in beans -->

    <!-- this file contains extra beans related to the qaevent feature configured only for test purpose -->
    <util:map id="qaAutomaticProcessingMap">
        <entry key="coar-notify" value-ref="qaScoreEvaluation"/>
    </util:map>

    <bean id="qaScoreEvaluation" class="org.dspace.qaevent.QAScoreAutomaticProcessingEvaluation">
        <property name="scoreToReject" value="0.3" />
        <property name="scoreToIgnore" value="0.5" />
        <property name="scoreToApprove" value="0.8" />
        <property name="itemFilterToReject" ref="simple-demo_filter" />
        <property name="itemFilterToIgnore" ref="simple-demo_filter" />
        <property name="itemFilterToApprove" ref="simple-demo_filter" />
    </bean>
</beans>