2012-01-06 08:55:05 -06:00
|
|
|
<beans
|
|
|
|
xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-05-29 14:49:43 -05:00
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
2012-01-06 08:55:05 -06:00
|
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
|
|
|
|
|
|
|
<bean id="satPreFilter" class="com.raytheon.uf.edex.ohd.pproc.SatPreURIFilter">
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<camelContext id="satPreFilter-context"
|
|
|
|
xmlns="http://camel.apache.org/schema/spring"
|
2014-03-19 14:23:52 -05:00
|
|
|
errorHandlerRef="errorHandler">
|
2012-01-06 08:55:05 -06:00
|
|
|
<route id="satPreIngestRoute">
|
2013-11-19 16:58:45 -06:00
|
|
|
<!-- Fed via notification -->
|
|
|
|
<from uri="jms-generic:queue:satPreFilter"/>
|
2012-01-06 08:55:05 -06:00
|
|
|
<doTry>
|
|
|
|
<pipeline>
|
|
|
|
<bean ref="serializationUtil" method="transformFromThrift" />
|
|
|
|
<bean ref="satPreFilter" method="matchURI"/>
|
2013-05-23 10:06:28 -05:00
|
|
|
<!-- <to uri="direct-vm:persistIndexAlert"/> -->
|
2012-01-06 08:55:05 -06:00
|
|
|
</pipeline>
|
|
|
|
<doCatch>
|
|
|
|
<exception>java.lang.Throwable</exception>
|
2013-06-19 09:20:50 -05:00
|
|
|
<to uri="log:satPre?level=ERROR"/>
|
2012-01-06 08:55:05 -06:00
|
|
|
</doCatch>
|
|
|
|
</doTry>
|
|
|
|
</route>
|
|
|
|
</camelContext>
|
2014-03-19 14:23:52 -05:00
|
|
|
<bean factory-bean="contextManager" factory-method="registerClusteredContext">
|
2012-01-06 08:55:05 -06:00
|
|
|
<constructor-arg ref="satPreFilter-context" />
|
|
|
|
</bean>
|
|
|
|
</beans>
|