awips2/edexOsgi/com.raytheon.edex.plugin.text/res/spring/text-request.xml
root 8e80217e59 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: a02aeb236c [formerly 9f19e3f712] [formerly 06a8b51d6d [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]
Former-commit-id: 06a8b51d6d
Former-commit-id: 3360eb6c5f
2012-01-06 08:55:05 -06:00

63 lines
No EOL
3.8 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="getAfosIdHandler" class="com.raytheon.edex.plugin.text.handler.GetAfosIdHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.GetAfosIdRequest"/>
<constructor-arg ref="getAfosIdHandler"/>
</bean>
<bean id="getPartialAfosIdHandler" class="com.raytheon.edex.plugin.text.handler.GetPartialAfosIdHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.GetPartialAfosIdRequest"/>
<constructor-arg ref="getPartialAfosIdHandler"/>
</bean>
<bean id="getWmoIdHandler" class="com.raytheon.edex.plugin.text.handler.GetWmoIdHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.GetWmoIdRequest"/>
<constructor-arg ref="getWmoIdHandler"/>
</bean>
<bean id="insertStdTextProduct" class="com.raytheon.edex.plugin.text.handler.InsertStdTextProductHandler"/>
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.InsertStdTextProductRequest"/>
<constructor-arg ref="insertStdTextProduct"/>
</bean>
<!-- Instantiate the handler class for StdTextProductRequestHandler -->
<bean id="stdTextProduct" class="com.raytheon.edex.plugin.text.handler.StdTextProductRequestHandler"/>
<!-- Register the handler class with the StdTextProductServerHandlerRegister. -->
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.StdTextProductServerRequest"/>
<constructor-arg ref="stdTextProduct"/>
</bean>
<!-- Instantiate the handler class for TextProductInfoRequestHandler -->
<bean id="textProductInfo" class="com.raytheon.edex.plugin.text.handler.TextProductInfoCreateHandler"/>
<!-- Register the handler class with the TextProductInfoHandlerRegister. -->
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.TextProductInfoCreateRequest"/>
<constructor-arg ref="textProductInfo"/>
</bean>
<bean id="sendFaxRequestHandler" class="com.raytheon.edex.plugin.text.handler.SendFaxRequestHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.SendFaxRequest"/>
<constructor-arg ref="sendFaxRequestHandler"/>
</bean>
<bean id="autoFaxRequestHandler" class="com.raytheon.edex.plugin.text.handler.AutoFaxRequestHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.AutoFaxRequest"/>
<constructor-arg ref="autoFaxRequestHandler"/>
</bean>
<bean id="getAutoFaxRecordsRequestHandler" class="com.raytheon.edex.plugin.text.handler.GetAutoFaxRecordsRequestHandler" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.dataplugin.text.request.GetAutoFaxRecordsRequest"/>
<constructor-arg ref="getAutoFaxRecordsRequestHandler"/>
</bean>
</beans>