awips2/edexOsgi/com.raytheon.edex.plugin.grib/res/spring/grib-request.xml
Ben Steffensmeier 0d9cbcd09e Issue #183 change grib data catalog to use bulk requests to retrieve all coverages at once.
Change-Id: I99f3dfc7900b57b074062155a4e7a65851f70170

Former-commit-id: d90356d266 [formerly 113722a596] [formerly d90356d266 [formerly 113722a596] [formerly dfd869c1c1 [formerly 3cdfc8f73cce96c00b7ac37a1e34e9d051b628b6]]]
Former-commit-id: dfd869c1c1
Former-commit-id: f2ff133117 [formerly f082727112]
Former-commit-id: 7335f90bfb
2012-01-27 14:48:40 -06:00

27 lines
No EOL
1.5 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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="gridDataQueryHandler" class="com.raytheon.edex.plugin.grib.handler.GridDataHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.grib.request.GridDataRequestMessage"/>
<constructor-arg ref="gridDataQueryHandler"/>
</bean>
<bean id="getCoverageHandler" class="com.raytheon.edex.plugin.grib.handler.GetCoverageHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.grib.request.GetCoverageRequest"/>
<constructor-arg ref="getCoverageHandler"/>
</bean>
<bean id="getCoveragesHandler" class="com.raytheon.edex.plugin.grib.handler.GetCoveragesHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.grib.request.GetCoveragesRequest"/>
<constructor-arg ref="getCoveragesHandler"/>
</bean>
</beans>