awips2/edexOsgi/com.raytheon.uf.edex.ohd/res/spring/ohd-request.xml
Mike Duff 2cb92e6039 Issue #2952 - Change MPE fieldgen to use thriftSrv
Change-Id: Ibd0ed87582a6374db1e49bc66093705436f6d5d3

Former-commit-id: 182b9f69c72332e73cdda26ebbebedb4abc059b0
2014-03-31 15:08:33 -05:00

24 lines
1.2 KiB
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-3.1.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="retrieveWhfsServiceData" class="com.raytheon.uf.edex.ohd.whfs.WhfsServiceHandler"/>
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.hydro.service.WhfsServiceRequest"/>
<constructor-arg ref="retrieveWhfsServiceData"/>
</bean>
<bean id="mpeProcessGribHandler" class="com.raytheon.uf.edex.ohd.pproc.MpeProcessGribSrv" />
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.hydro.service.MpeGribProcessRequest"/>
<constructor-arg ref="mpeProcessGribHandler"/>
</bean>
<bean factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.mpe.fieldgen.MpeFieldGenRequest"/>
<constructor-arg ref="mpeFieldGenService"/>
</bean>
</beans>