awips2/edexOsgi/com.raytheon.uf.edex.ohd/res/spring/arealffgGenerator-spring.xml
Brian.Dyke cfa4997978 OB_14.1.1-19 baseline
Former-commit-id: db2a591456383d8f980d33757e8c161bdcc01d3a
2014-02-21 06:50:59 -05:00

57 lines
No EOL
1.8 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">
<!-- 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">
-->
<!--
<endpoint id="arealffgFileEndpoint" uri="file:${edex.home}/data/sbn/arealffg?noop=true&amp;idempotent=false" />
<route id="arealffgFileConsumerRoute">
<from ref="arealffgFileEndpoint" />
<bean ref="fileToString" />
<setHeader headerName="pluginName">
<constant>arealffg</constant>
</setHeader>
<to uri="jms-durable:queue:Ingest.arealffg" />
</route>
-->
<!-- 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>