awips2/edexOsgi/com.raytheon.uf.edex.plugin.grid/res/spring/grid-request.xml
Steve Harris 4ba416aeb3 13.1.2-2 baseline
Former-commit-id: 221d0aaf0e19a054387134e72a76a278159bf4d0
2013-01-06 14:32:24 -06:00

22 lines
No EOL
1,007 B
XML

<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.0.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="gridTreeHandler"
class="com.raytheon.uf.edex.plugin.grid.handler.GridTreeHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg
value="com.raytheon.uf.common.dataplugin.grid.request.GetGridTreeRequest" />
<constructor-arg ref="gridTreeHandler" />
</bean>
<bean id="deleteAllDataHandler"
class="com.raytheon.uf.edex.plugin.grid.handler.DeleteAllGridDataHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg
value="com.raytheon.uf.common.dataplugin.grid.request.DeleteAllGridDataRequest" />
<constructor-arg ref="deleteAllDataHandler" />
</bean>
</beans>