awips2/tests/resources/datadelivery/mock-datadelivery-handlers.xml
Dustin Johnson b24ddaeb4e Issue #1453 Fix the handling of subscription active period dates.
Amend:
  Move tests project over that was missed while moving datadelivery code

Change-Id: I10611f8a4b6c2efe6af1813e5181fadc059e4f9a

Former-commit-id: 1975cd0442 [formerly 6a90779214] [formerly 1975cd0442 [formerly 6a90779214] [formerly 2635e05723 [formerly 0e1397db6ca1a7a577d20507bc2c4daf823188fe]]]
Former-commit-id: 2635e05723
Former-commit-id: 885f315d30 [formerly 492cee4992]
Former-commit-id: b1c159fc7f
2013-01-08 12:44:29 -06:00

70 lines
No EOL
2.9 KiB
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core" 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">
<!-- These handlers are mock handlers create by Mockito,
which allow verifications of method invocations -->
<bean name="SubscriptionHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.ISubscriptionHandler" />
</bean>
<bean name="PendingSubscriptionHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IPendingSubscriptionHandler" />
</bean>
<bean name="GroupDefinitionHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IGroupDefinitionHandler" />
</bean>
<bean name="ProviderHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IProviderHandler" />
</bean>
<bean name="DataSetNameHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IDataSetNameHandler" />
</bean>
<bean name="ParameterHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IParameterHandler" />
</bean>
<bean name="ParameterLevelHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IParameterLevelHandler" />
</bean>
<bean name="DataSetMetaDataHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IDataSetMetaDataHandler" />
</bean>
<bean name="GriddedDataSetMetaDataHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IGriddedDataSetMetaDataHandler" />
</bean>
<bean name="DataSetHandler" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg
value="com.raytheon.uf.common.datadelivery.registry.handlers.IDataSetHandler" />
</bean>
</beans>