awips2/edexOsgi/com.raytheon.uf.edex.ohd/res/spring/arealffgGenerator-spring.xml
2022-05-05 12:34:50 -05:00

47 lines
No EOL
1.7 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.xsd
http://camel.apache.org/schema/spring
http://camel.apache.org/schema/spring/camel-spring.xsd">
<!-- data only comes in netcdf from RFC, disabling for now
<bean id="arealffgGenerator" class="com.raytheon.uf.edex.ohd.pproc.PprocSrv">
<constructor-arg>
<list>
<value>run_gen_areal_ffg</value>
</list>
</constructor-arg>
</bean>
<bean id="arealffgDistRegistry" class="com.raytheon.uf.edex.distribution.DistributionSrv"
factory-method="register">
<constructor-arg value="arealffg" />
<constructor-arg value="jms-durable:queue:Ingest.arealffg" />
</bean>
<camelContext id="arealffg-camel"
xmlns="http://camel.apache.org/schema/spring"
errorHandlerRef="errorHandler">
-->
<!-- Begin arealffg Routes -->
<!--
<route id="arealffgIngestRoute">
<from uri="jms-durable:queue:Ingest.arealffg" />
<doTry>
<pipeline>
<bean ref="stringToFile" />
<bean ref="arealffgGenerator" method="execute" />
<bean ref="processUtil" method="log"/>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:warning?level=INFO"/>
</doCatch>
</doTry>
</route>
</camelContext>
-->
</beans>