Conflicts: cave/com.raytheon.viz.awipstools/src/com/raytheon/viz/awipstools/ui/layer/VRShearLayer.java cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/interrogators/RadarVelocityInterrogator.java edexOsgi/build.edex/esb/conf/spring/edex.xml edexOsgi/com.raytheon.edex.common/src/com/raytheon/edex/db/purge/SchemaManager.java edexOsgi/com.raytheon.uf.edex.purgesrv/src/com/raytheon/uf/edex/purgesrv/PurgeJob.java Change-Id: Ie7062275be13d6b19bbc9476b0c0f5aba129c862 Former-commit-id:2c009eb618
[formerlya12830f762
] [formerlyc5040038d3
[formerly 3f82f4d18bd7d0afa1e4cb49493e690d9160c24e]] Former-commit-id:c5040038d3
Former-commit-id:bcf4dcc810
45 lines
1.9 KiB
XML
45 lines
1.9 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-2.0.xsd
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
|
|
|
<bean id="siteActivateNotifyFilter"
|
|
class="com.raytheon.uf.edex.site.notify.SiteActivateNotifyFilter" />
|
|
<bean id="siteActivationMonitor" class="com.raytheon.uf.edex.site.SiteActivationMonitor" factory-method="getInstance"/>
|
|
|
|
<camelContext id="siteActivation"
|
|
xmlns="http://camel.apache.org/schema/spring"
|
|
errorHandlerRef="errorHandler"
|
|
autoStartup="false">
|
|
<route id="siteActivationRoute">
|
|
<from uri="jms-generic:topic:siteActivation" />
|
|
<doTry>
|
|
<bean ref="serializationUtil" method="transformFromThrift"/>
|
|
<bean ref="siteAwareRegistry" method="handleMessage" />
|
|
<doCatch>
|
|
<exception>java.lang.Throwable</exception>
|
|
<to uri="log:siteActivation?level=ERROR&showBody=false&showCaughtException=true&showStackTrace=true"/>
|
|
</doCatch>
|
|
</doTry>
|
|
</route>
|
|
|
|
<route id="siteActivateNotify">
|
|
<from uri="vm:edex.siteActivateNotification?size=5000" />
|
|
<filter>
|
|
<method bean="siteActivateNotifyFilter" method="isSiteActivateNotification" />
|
|
<bean ref="siteActivationMonitor" method="handleNotification"/>
|
|
<bean ref="serializationUtil" method="transformToThrift" />
|
|
<to uri="jms-generic:topic:edex.alerts.siteActivate?timeToLive=60000" />
|
|
</filter>
|
|
</route>
|
|
</camelContext>
|
|
|
|
<bean id="siteActivationRegistered" factory-bean="contextManager"
|
|
factory-method="register">
|
|
<constructor-arg ref="siteActivation"/>
|
|
</bean>
|
|
|
|
<bean id="siteAwareRegistry" class="com.raytheon.uf.edex.site.SiteAwareRegistry" factory-method="getInstance">
|
|
<property name="routeId" value="siteActivationRoute"/>
|
|
</bean>
|
|
</beans>
|
|
|