awips2/edexOsgi/com.raytheon.uf.edex.ohd/res/spring/ohd-request.xml
2017-04-21 18:33:55 -06: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>